delegate void PrintHandler(string st, int i);
static string _str = "Hello World";
static void Print(string str, int n)
{Console.WriteLine("My Line: " +str);}
public static void Main()
PrintHandler s = new PrintHandler(Print);
string resault = s.ToString();
Console.WriteLine(resault);