public delegate string Greeter(string name);
this.myGreeter += new Greeter(this.Get);
public string Get(string name) {
public static void Main(string[] args) {
Hello hello = new Hello();
string message = hello.myGreeter("Hosokawa");
Console.WriteLine(message);