コード例 #1
0
 public static string[] MethodWithVariableArguments(this KoanHelper koan, params string[] names)
 {
     return(names);
 }
コード例 #2
0
 public static string HelloWorld(this KoanHelper koan)
 {
     return("Hola!");
 }
コード例 #3
0
 public static string SayHello(this KoanHelper koan, string name)
 {
     return(String.Format("Hola, {0}!", name));
 }