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 |
Why do we use threads in c#?
Write an expression which satisfies the following statements: (i) Creates an object of type q (ii) If m is null, returns n, otherwise returns m (iii) If x and y are string types, it concatenates x and y
If I return out of a try/finally in c#, does the code in the finally-clause run?
What is access specifier in c#?
How can we main a Class as base class,i.e not inherited further?{please Dont tell using Sealed class,any other way}
6 Answers ACB Group, IBM, Tech Mahindra,
How can we sort an array in c#?
Why do we need events in c#?
Can a class be private in c#?
What is the system namespace?
Explain ACID rule of thumb for transactions.
How do you restrict the type which can be used in custom generic?
What is windows application in c#?