public static void Main()
Console.WriteLine("Hello World");
string firstName,lastName,fullName;
Student s = new Student();
s.getStudentName(out firstName, out lastName, out fullName);
Console.WriteLine("{0},{1},{2}",firstName,lastName, fullName);
public void getStudentName(out string firstName, out string lastName, out string fullName)
public void GetOtherDetals(out string SpouseName,out string MN, out string FN, out string SN)