what is new modifier in C#

Answers were Sorted based on User's Feedback



what is new modifier in C#..

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

what is new modifier in C#..

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

what is new modifier in C#..

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

what is new modifier in C#..

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

what is new modifier in C#..

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

what is new modifier in C#..

Answer / viswanath

hi Rahul,
what u did, are u not misusued?

Is This Answer Correct ?    4 Yes 6 No

what is new modifier in C#..

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 is new modifier in C#..

Answer / kiran

hi

Is This Answer Correct ?    1 Yes 20 No

Post New Answer

More OOPS Interview Questions

What is class and example?

0 Answers  


Whats oop mean?

0 Answers  


write knight tour problem which is present in datastructure

0 Answers  


what is pointers

7 Answers   Exilant,


Please tell me the oops concept with detailed answer

9 Answers   EEE,






to remove the repeated numbers from the given . i.e.., if the input is 12233 output should of 123

2 Answers  


IN PROGRAMING LANGAUGE A C++ IS PURELY OBJECT ORIENTED OR NOT?

2 Answers  


what is oops

4 Answers   NIIT,


How do you achieve runtime polymorphism?

0 Answers  


What is abstrac class?where is it use?

2 Answers  


C#.net Interview Question A=10 B=5 C=A+B Print C The above will be given in a multiline textbox. You need to parse the above input, store values for A,B&c. And you have to display the value of C.

1 Answers   Syncfusion,


What are the two different types of polymorphism?

0 Answers  


Categories