class Student
{
public virtual void Name()
{
Console.WriteLine("Kulshresth");
}
}
class Student_Details:Student
{
public override void Name()
{
Console.WriteLine("Kulshresth Kumar");
}
public override void Name(string name)
{
Console.WriteLine("Kulshresth Kumar "+) name;
}
}------------------------
class Program
{
static void Main(string[] args)
{
Student_Details obj = new Student_Details();
obj.Name();
obj.Name("Nagar");
Console.ReadLine();
}
}
{
public virtual void Name()
{
Console.WriteLine("Kulshresth");
}
}
class Student_Details:Student
{
public override void Name()
{
Console.WriteLine("Kulshresth Kumar");
}
public override void Name(string name)
{
Console.WriteLine("Kulshresth Kumar "+) name;
}
}------------------------
class Program
{
static void Main(string[] args)
{
Student_Details obj = new Student_Details();
obj.Name();
obj.Name("Nagar");
Console.ReadLine();
}
}
No comments:
Post a Comment