public static void Main()
 {
     DelegateIntro.Go();
     GetInvocationList.Go();
     AnonymousMethods.Go();
     DelegateReflection.Go("TwoInt32s", "Add", "123", "321");
     DelegateReflection.Go("TwoInt32s", "Subtract", "123", "321");
     DelegateReflection.Go("OneString", "NumChars", "Hello there");
     DelegateReflection.Go("OneString", "Reverse", "Hello there");
 }
Example #2
0
 public static void Main()
 {
     DelegateIntro.Go();
     GetInvocationList.Go();
 }