public static string GetFullName(string strFirstName, string strLastName)
return strLastName + ", " + strFirstName;
public static void Main()
string strFirstName, strLastName, strFullName;
strLastName = "Peerenboom";
strFullName = GetFullName(strFirstName, strLastName);
Console.WriteLine(strFullName);