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

Explain anonymous type in c#?

0 Answers  


How many dimensions can an array have?

0 Answers  


What is typeof c#?

0 Answers  


Can you see a loop recorder?

0 Answers  


How many catch blocks can be there for a single try block?

5 Answers   Clover, HCL,


Why do we still see so much non-oo code written in c# today?

0 Answers  


What?s different about switch statements in C#?

2 Answers  


What is the difference between static class and abstract class in c#?

0 Answers  


what are ways to debug the code step by step except using breakpoints?

1 Answers  


What are value types and reference types?

0 Answers  


What are Namespaces?

1 Answers  


in object oriented programming, how would you describe encapsulation?

0 Answers   Siebel Systems,


Categories