示例#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);
     });
 }