public static void Main()
Console.WriteLine("Hello World");
iStudent istd = new Test();
iMaster iMstd = new Test();
public interface iStudent
public class Test:iStudent,iMaster
public void StudentHomeTown()
Console.WriteLine("Student HOme Town");
public void StudentName()
Console.WriteLine("Student Name");
Console.WriteLine("Master Name");
public void MasterHomeTown()
Console.WriteLine("Master Home town");
void iStudent.TrailMethod()
Console.WriteLine("Trail Method istudent");
void iMaster.TrailMethod()
Console.WriteLine("Trail Method iMaster");