can it possible to acees the virthual method using the
override method object?
plz give me the example

Answers were Sorted based on User's Feedback



can it possible to acees the virthual method using the override method object? plz give me the ex..

Answer / aspdev556

class BaseClass
{
public virtual Method(){}
}

class DerivedClass
{
public override Method()
{base.Method();}
}

Is This Answer Correct ?    3 Yes 0 No

can it possible to acees the virthual method using the override method object? plz give me the ex..

Answer / javed khan

public class zzz
{
public static void Main()
{
yyy x = new xxx();
x.test();

}
}
class yyy
{
public virtual void test()
{
System.Console.WriteLine("base calss.");
}
}
class xxx : yyy
{
public override void test()
{

System.Console.WriteLine("derived calss.");
base.test();
}
}

Is This Answer Correct ?    1 Yes 1 No

Post New Answer

More C Sharp Interview Questions

what is output parameter and parameter array?

1 Answers   TCS,


windows c# using datagridview in edit form sql server

0 Answers  


What are primitive types in c#?

0 Answers  


Why is it not a good idea to insert code into InitializeComponent method when working with Visual Studio ?

1 Answers  


What is data quality assurance?

0 Answers  


Explain how do I get deterministic finalization in c#?

0 Answers  


Define a jagged array in c#?

0 Answers  


what are the contents of an assembly ?

0 Answers  


What is the difference between array and arraylist in c#?

0 Answers  


What?s different about switch statements in C#?

2 Answers  


What is the difference between hashtable and dictionary in c#?

0 Answers  


Is it possible to force garbage collector to run?

0 Answers  


Categories