Answer Posted / dsr
A constructor is a method, which is called when an object
of a class type is constructed, and it usually used for
initialization. A constructor method has following
characteristics:
It has the same name as class
It has no return type
It does not return any value
Constructors are always public and we use them to
initialize variable.
There is default class constructor without parameter,
provided by C# internally if we did not write any
constructor. when ever compile that class,compiler create
the default constructor(with out parameters).
In the other hand a Destructor is also called a finalizer.
It is just opposite the constructor, it is a method called
when the garbage collector reclaims an object.
Constructors have following characteristics:
The name of a destructor is same as name of class
The destructor declared with a tilde (~).
Destructors are always public and never other than public.
Destructors take no arguments. So, there is only one
destructor per class.
Destructors have no return type.
| Is This Answer Correct ? | 11 Yes | 3 No |
Post New Answer View All Answers
what are login controls?
What is the .net class that allows the retrieval of a data element using a unique key?
I want to create a project like google maps how can we do that with atlas?
What is IL code, CLR, CTS, GAC & GC?
Explain the purpose of cache? How is it used? : Dot net architecture
Can I create my own permission set?
What are the types of memory management? : Dot net architecture
Are there any third party logging components available?
Explain the Lapsed Listener problem in .net
data types used in validation control
What is private constructor? And it's use?
How resource files are used in .net?
What are the options provived by vss to the user? how it will help us while delevoping application?
I can't be bothered with cas. Can I turn it off?
Explain domestic architecture artifacts? : .NET Architecture