public static void Main()
string thing = GetUserName();
string age = GetUserAge();
Console.WriteLine("You name is {0}", thing);
Console.WriteLine("you are {0}", age);
public static void PrintSomething()
Console.WriteLine("Hello World");
public static string GetUserName()
Console.WriteLine("what is your name?");
return Console.ReadLine();
public static string GetUserAge()
Console.WriteLine("what is your age");
return Console.ReadLine();