What is static Constructor?
Answers were Sorted based on User's Feedback
Answer / suresh mediboyina
Static constructor is used to initialize static data
members as soon as the class is referenced first time
| Is This Answer Correct ? | 8 Yes | 1 No |
Answer / nagarjunareddy.sannapareddy
1.static constructor is execute only once while class is
loaded into memory
2.static constructor use only static variables
| Is This Answer Correct ? | 8 Yes | 1 No |
Answer / manikanta.srinu
1.static constructor is execute only once while class is
loaded into memory.
2.static constructor use only static variables.
3.static constructor is a paramaterless constructor.
4.Can't use access modifiers on static constructor.
5.We can't create instence for static constructor.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / nagakrishna balusu
static constructor is execute only once while class is
loaded into memory.
2.static constructor use only static variables.
| Is This Answer Correct ? | 0 Yes | 0 No |
How can u manage state ?
What is .net viewstate?
What i sthe meaning of .(dot) in .Net?
Please tell me the .net 2.5 frame work with example
What is ITIL? What is the use of ITIL and how it works?
how to add list of items in a web application and win application?
What size is a .net object?
What are the different access modifier? Explain in detail?
What are bindings?
9. Oop-Class A has m1 metthode Class B has m1 metthode and C is the calss that inharits A class, A class inharits B class. If Object dim c as new A() c.m1(), Tell me which mettode of class will call
What is the problem with .net generics?
What is one way operation?