If you want to write your own dot net language, what steps you will u take care?
how dot net compiled code will become platform independent?
What is the use of base keyword? Tell me a practical example for base keyword’s usage?
What is the difference while using directive vs using statement ?
What is boxing & unboxing?
Explain about Destructor method?
Explain about finalize method?
Difference between type constructor and instance constructor? What is static constructor, when it will be fired? And what is its use?
What is Asynchronous call and how it can be implemented using delegates?
What is Private Constructor? and it’s use? Can you create instance of a class which has Private Constructor?
What is check/uncheck?
Overloaded constructor will call default constructor internally?
How to create events for a control? What is custom events? How to create it?
Write one code example for compile time binding and one for run time binding? What is early/late binding?
I have 3 overloaded constructors in my class. In order to avoid making instance of the class do I need to make all constructors to private?