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