public static string[] MethodWithVariableArguments(this Koan koan, params string[] names) { return(names); }
public static string HelloWorld(this Koan koan) { return("Hello!"); }
public static string SayHello(this Koan koan, string name) { return(String.Format("Hello, {0}!", name)); }