What is the use of the static constructor? When static
constructor gets compiled?



What is the use of the static constructor? When static constructor gets compiled?..

Answer / jitendra

Static constructor is used to initzialise the static data
members when the class has been instantiated first time.
Static data members can certainly be initialized at the
time of their declaration but there are times when value of
one static member may depend upon the value of another
static member. In such cases we definitely need some
mechanism to handle conditional initialization of static
members. To handle such situation, C# provides static
constructor.

Is This Answer Correct ?    20 Yes 2 No

Post New Answer

More C Sharp Interview Questions

Can abstract class have constructor?

0 Answers  


Which config file has all the supported channels/protocol?

0 Answers  


What is a proxy of the server object in .NET Remoting?

1 Answers   BirlaSoft,


What is the use of ispostback in c#?

0 Answers  


How to make a class not inheritable other than sealed?

3 Answers  


Can structs in c# have destructors?

0 Answers  


Why c# is type safe?

0 Answers  


Why do we need events in c#?

0 Answers  


What is the full form of GAC? Explain its uses?

0 Answers   PUCIT,


Define an assembly in .net?

0 Answers  


write program in c# using this instructions name avinash varma ,work experiance<2,nochildren his work experiance is higher than 5 years,more than one children one children name is diwakar,number of years of work eperiance at current company is the ratio of children and work experiance is 0.21 to 0.5

0 Answers  


What are the different ways of method can be overloaded?

0 Answers  


Categories