/ Published in: C#
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
delegate string DelegateTest(string str); Console.WriteLine(delTest("LOL")); class Class1{ ... public static string Hello(string msg) { return "Hello " + msg; } }