what is new modifier in C#
Answers were Sorted based on User's Feedback
Answer / pratyaya kumar ghosh
C# allow redefinition of inherited methods in the derived
classes at the cost of hiding the inherited ones using new
modifier.
| Is This Answer Correct ? | 7 Yes | 2 No |
Answer / anna
Mr.kiran this site is not for sending "hi" type nessages.
please dont misuse the site.
thanq
| Is This Answer Correct ? | 10 Yes | 5 No |
Answer / shiraz abbas rizvi
When used as a modifier, the new keyword explicitly hides a
member inherited from a base class. Hiding an inherited
member means that the derived version of the member
replaces the base-class version.
| Is This Answer Correct ? | 6 Yes | 1 No |
Answer / r.r.bharti
It is an error to use both new and override on the same
member, as the two modifiers have mutually exclusive
meanings. Using new creates a new member with the same name
and causes the original member to become hidden, while
override extends the implementation for an inherited member.
Using the new modifier in a declaration that does not hide
an inherited member generates a warning.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / raj
What is meaning of "Explicitly hides a
member inherited from a base class"?
I mean what exactly trying to say please please tell me.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / rahul p.v
HEI ANNA
This site is not for commenting 'bout others answers.u were
the one who misused the site by commenting!!!!
thnx
| Is This Answer Correct ? | 3 Yes | 8 No |
what are abstract classes and how they impliment , with example
Which is the only operator in C++ which can be overloaded but NOT inherited?
Write an operator overloading program to Overload ‘>’ operator so as to find greater among two instances of the class.
what is virtual function in c++
What is OOPS and How it is different from Procedural Programming ?
23 Answers HP, Infosys, Thyrocare,
where is memory for struct allocated? where is memory for class-object allocated? I replied for struct in stack and for class-object in heap. THen he asked if class has struct member variable what happens.class on heap and what about struct in that class? couldnt ans :( :-?
difference between structure and union.
What is new keyword in oops?
What is the difference between abstraction and polymorphism?
What is polymorphism explain its types?
class type to basic type conversion
what is the technical or oop name of object?