what is a constructor?

Answers were Sorted based on User's Feedback



what is a constructor?..

Answer / ranjith

Constructor is a method which will be executed when an
object is created. It is used to Intialize the
object.constructors has the same name as the class
name.constructors will take parameters.constructors doesnot
return any value

Is This Answer Correct ?    6 Yes 0 No

what is a constructor?..

Answer / dharmendra nonia

constructor is a special type of method that invoke when u
create a new instance of a class. Basically it is used to
initialize the member variables.Its name must be same as
the class name.It have no return type.

Is This Answer Correct ?    1 Yes 0 No

what is a constructor?..

Answer / divya

Constructor is a method that is executed when an object is
created.

Is This Answer Correct ?    0 Yes 0 No

what is a constructor?..

Answer / shadab alam

It is very Important to know that
---------------------------------------
Constructor is generally used to create the new instance of
a class.

Constructor is special type of method that is used to
initialized the member variable and It has same name as the
class Name.It does not have return type.

Is This Answer Correct ?    0 Yes 0 No

what is a constructor?..

Answer / pushparaj pentakota

constructor is a special method it's invoke when object is
created and used to initialize instance members.and doesn't
have any return type.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Sharp Interview Questions

What is helper method in c#?

1 Answers  


If you want to convert a base type to a derived type, what type of conversion do you use?

1 Answers  


what is the use of master pages. how to use it

2 Answers  


How many parameters can a method have c#?

1 Answers  


What are delegate methods?

1 Answers  


Is stringbuilder better than string?

1 Answers  


what is output parameter and parameter array?

1 Answers   TCS,


Which is algorithm is used to Manage the Memory in .net ??

7 Answers   TCS,


How can I create a process that is running a supplied native executable (e.g., Cmd.exe)?

1 Answers  


What is the difference between returning iqueryable vs ienumerable?

1 Answers  


What is console readkey ()?

1 Answers  


Are c# constructors the same as c++ constructors?

1 Answers  


Categories