Thanks to Scott for finding this.
public static string SayHello(string name)
{
    return String.Format("Hello, {0}!", name);
} 

 

You can read more about it here.