public static EventDelegate.Callback CreateClosuresForEventDelegate(int i, FunInt fCallback)
 {
     return(delegate()
     {
         fCallback(i);
     });
 }
 public static FunVoid CreateClosures(int i, FunInt fCallback)
 {
     return(delegate()
     {
         fCallback(i);
     });
 }