public static void Main()
Console.WriteLine("This is the Main method of the First class.");
Console.WriteLine("What is your name? ");
string name = Console.ReadLine();
Console.WriteLine("Hi " + name + ", I will pass you through to another method.");
Second sec = new Second();
sec.practiceMethod(name);
public void practiceMethod(string name)
Console.WriteLine("This is the practiceMethod() of the Second class... will I ever get used? ");
Console.WriteLine("Oh hi " + name + ", looks like I did get used after all!");