Virtual code syntax in C#

Vivek.Ramapuram
Posted by Vivek.Ramapuram under C# category on | Points: 40 | Views : 1063
class Base
{
protected virtual void Test()
{
..............;
}
}
class Derived : Base
{
protected override void Test()
{
..............;
}
}

Comments or Responses

Login to post response