is it possible to inherit a class but methods declared in
the class should not be inheritable i possible how?

Answers were Sorted based on User's Feedback



is it possible to inherit a class but methods declared in the class should not be inheritable i po..

Answer / aakanchha

Yes..!!
We can define a method as "private" ,so the method will not
be inherited.

and by 'sealed' we can prevent overriding but can not
prevent inheriting .

Is This Answer Correct ?    17 Yes 1 No

is it possible to inherit a class but methods declared in the class should not be inheritable i po..

Answer / arunkumar

s it is possible by doing Sealed keyword to the method in
first class

Is This Answer Correct ?    21 Yes 8 No

is it possible to inherit a class but methods declared in the class should not be inheritable i po..

Answer / ashish modi

class X
{
protected virtual void F() { Console.WriteLine("X.F"); }
protected virtual void F2() { Console.WriteLine
("X.F2"); }
}
class Y : X
{
sealed protected override void F() { Console.WriteLine
("Y.F"); }
protected override void F2() { Console.WriteLine
("X.F3"); }
}
class Z : Y
{
// Attempting to override F causes compiler error
CS0239.
// protected override void F() { Console.WriteLine
("C.F"); }

// Overriding F2 is allowed.
protected override void F2() { Console.WriteLine
("Z.F2"); }
}

Is This Answer Correct ?    12 Yes 2 No

is it possible to inherit a class but methods declared in the class should not be inheritable i po..

Answer / vishal

That's Correct.
Using private keyword in the method signature is a way of
preventing inheritance of that method in child class.

Please note that using "sealed" keyword in method signature
only prevents overriding of the method in child class, but
the method is still inheritable in the child class.

Is This Answer Correct ?    8 Yes 0 No

is it possible to inherit a class but methods declared in the class should not be inheritable i po..

Answer / vimal

Use 'Sealed' Keyword with Method

Is This Answer Correct ?    0 Yes 1 No

is it possible to inherit a class but methods declared in the class should not be inheritable i po..

Answer / vimal

Use 'Sealed' Keyword with Method

Is This Answer Correct ?    0 Yes 1 No

is it possible to inherit a class but methods declared in the class should not be inheritable i po..

Answer / bikas pandey

Let The Class To Public And The Method To Be Sealed

Is This Answer Correct ?    1 Yes 4 No

is it possible to inherit a class but methods declared in the class should not be inheritable i po..

Answer / rajni

yes it is possible for method not to inherit make it final.

Is This Answer Correct ?    0 Yes 5 No

Post New Answer

More C Sharp Interview Questions

Why we use delegates in c#?

0 Answers  


Is there a way to force garbage collection?

0 Answers  


How can we Achieve Late binding in C#.Can any give one example.

5 Answers   Value Labs,


What is different between Static Constructor and Private Constructor?

0 Answers  


hi, I am a begineer to c sharp. I have written a code for finding out prime numbers. Can anyone identify what are the flaws in my code. Kindly donot complex the code or present logic because i am new to c sharp and just started learning programming language.Thanks in advance. class Program { static void Main(string[] args) { int a,b=1; a = int.Parse(Console.ReadLine()); c= int.Parse(Console.ReadLine()); if (a % b == 0 && a % 2 != 0 && a % a == 0) Console.WriteLine(a); else if (a % b == 0 && a % 2 == 0) Console.WriteLine(a%2); Console.WriteLine("Number is not PRIME"); Console.ReadLine(); } } }

2 Answers  


What is a template class?

0 Answers  


Describe ways of cleaning up objects in c#.

0 Answers  


What?s the top .NET class that everything is derived from?

3 Answers  


Why do we use polymorphism in c#?

0 Answers  


What is new method in c#?

0 Answers  


What is tryparse?

0 Answers  


I need code to connect ohter systems in the LAN and i want to display my website image over there and i want explain as a admin through phone. So i need code to access other system using C-Sharp. Any one please help me.Please give me the code. Advace thanks.

0 Answers   Excel,


Categories