Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- delegate string DelegateTest(string str);
- DelegateTest delTest = new DelegateTest(Class1.Hello);
- Console.WriteLine(delTest("LOL"));
- class Class1{
- ...
- public static string Hello(string msg) {
- return "Hello " + msg;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment