What is the use of New Keyword

Answers were Sorted based on User's Feedback



What is the use of New Keyword..

Answer / rajesh - headstrong

New is not used just to create objects of a class. It is
also used for Shadowing a method in .NET, which means if
Base class and Derived class have methods with same name
and signature, You can precede the derived class method
name with "new" keyword which makes the method a new one
altogether. This is used in retaining old implementation of
a method and you also want to introduce new implementation
for same method in your assembly

Is This Answer Correct ?    39 Yes 3 No

What is the use of New Keyword..

Answer / senthil kumar

The keyword New is used to create the object for the
classes.using that object all the methods and properties
are invoked.

Is This Answer Correct ?    30 Yes 1 No

What is the use of New Keyword..

Answer / ajay kumar

To allocate the memory to an object.

Is This Answer Correct ?    22 Yes 5 No

What is the use of New Keyword..

Answer / kalidoss

Allocate or create dynamic memory to an object during the
run time not compile time.

Is This Answer Correct ?    11 Yes 1 No

What is the use of New Keyword..

Answer / sangita patra

the new keyword is basically used in reference types to
create a object and allocate memory to it.and it can also
be used in value types to invoke the default constructor.

Is This Answer Correct ?    7 Yes 0 No

What is the use of New Keyword..

Answer / new

To allocate memory

Is This Answer Correct ?    3 Yes 0 No

What is the use of New Keyword..

Answer / deepak bankar

The new keyword is used to an object of a class.And also it
is used to hide Methods and variables

Is This Answer Correct ?    3 Yes 1 No

What is the use of New Keyword..

Answer / sudhanshu shekhar

The new keyword when applied to a derived
Type,method,property,event,constant or field indicates that
the member has no relationship to a similar member that may
exist in base class.

Is This Answer Correct ?    2 Yes 1 No

What is the use of New Keyword..

Answer / sanjay maurya

the new keyword is basically used in reference types to
create a object and allocate memory to it.

an oter use of new keyword method overriding it override
the base class method from dirved class method when base
class method not define as vertual

Is This Answer Correct ?    2 Yes 1 No

What is the use of New Keyword..

Answer / hafiz usman majeed

as modern programming languages use this keyword
extesively, it used to assign an object the memory on heap.
and thus physically implements the class for that
particular object.

Is This Answer Correct ?    4 Yes 4 No

Post New Answer

More C Sharp Interview Questions

What all details the assembly manifest will contain?

0 Answers  


Define satellite Assembly?

0 Answers   Siebel,


Can you use all access modifiers for all types?

0 Answers  


Explain the role of Garbage collector and its generations?

0 Answers   MCN Solutions,


Why do we need delegates in c#?

0 Answers  






What is the difference between a constant and a static readonly field?

0 Answers  


In the page load event I assigned dropdownlist’s datasource property to a valid list. On the submit button click.. The same datasource property is coming as null. Why?

0 Answers  


How can you sort strings in array that are passed to method as arguments?

0 Answers  


What is the use of 'as' Keyword in C# ?

0 Answers   HCL,


When do you generally use a class over a struct?

0 Answers  


write program in c# using this instructions name avinash varma ,work experiance<2,nochildren his work experiance is higher than 5 years,more than one children one children name is diwakar,number of years of work eperiance at current company is the ratio of children and work experiance is 0.21 to 0.5

0 Answers  


Explain how to add controls dynamically to the form using c#.net.

0 Answers  


Categories