예제 #1
0
 public static EventDelegate.Callback CreateClosuresForEventDelegate(int i, FunInt fCallback)
 {
     return(delegate()
     {
         fCallback(i);
     });
 }
예제 #2
0
 public static FunVoid CreateClosures(int i, FunInt fCallback)
 {
     return(delegate()
     {
         fCallback(i);
     });
 }