public static void Main() { Console.WriteLine("Program Started : "); child obj = new child(); obj.test(); obj.test(10); obj.test("suheb"); obj.test(10, 20); obj.test("suheb", 1); obj.test(2, "ghare"); Console.WriteLine("Program Ended : "); Console.ReadLine(); }
void main() { child c = new child(); }