12 return "Hello, World!";
15 public string Bar(string who
)
17 return "Hello, " + who
+ "!";
27 public string Bar(string greet
)
29 return greet
+ ", World!";
39 public string Bar(string greet
)
41 return greet
+ ", World!!!";
47 public static void Main(string[] args
)
50 System
.Console
.WriteLine(foo
.Bar());
51 System
.Console
.WriteLine(foo
.Bar("World"));
53 System
.Console
.WriteLine(goo
.Bar("Hello"));
54 var foo2
= new Foo2();
55 System
.Console
.WriteLine(foo2
.Bar("Hello"));