When compiler adds a default constructor to a class?
Answers were Sorted based on User's Feedback
Answer / chandana
The compiler adds a default constructor to a class when no
constructor are specified by the programmer.
Is This Answer Correct ? | 10 Yes | 0 No |
Answer / sitaram
when ever compile the class,First compiler check the any
type of constructor is available or not in that class? if
it is not available. compiler will automatically create the
default constructor.
Is This Answer Correct ? | 3 Yes | 1 No |
Answer / abhay k pandey
When there in no explicite parameterless constructor
written for any class. C# compiler calls the default
constructor and initializes fields with zero, false and
null values.
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / romeo
when the object of that class is created with no parameters
passed.
Is This Answer Correct ? | 2 Yes | 7 No |
Advantages of c# over vb.net?
What is the difference between int.Parse() and Convert.toInt32().
What is the difference between wrapper class and primitive?
Is array reference type in c#?
What happens if you add duplicate elements to a set?
How can we acheive inheritance in VB.NET ?
Explain when should you call the garbage collector in .net?
What is hiding in CSharp ?
What is strong name in c# and how can we use it?
How do you type a null character?
what is the difference between .dll and .exe
Explain the difference between private and shared assembly?