コード例 #1
0
 public static string SayHello(this SubTestData data, string suffix)
 {
     return("Hello as well, " + data.Id + suffix);
 }
コード例 #2
0
 public static string SayHello(this SubTestData data, bool friendly)
 {
     return("Hello as well, " + (friendly ? "dear " : string.Empty) + data.Id);
 }
コード例 #3
0
 public static string SayHello(this SubTestData data)
 {
     return("Hello as well, " + data.Id);
 }