Ejemplo n.º 1
0
 public static void Invoke(this IESFunction func)
 {
     if (func != null)
     {
         func.Invoke(null);
     }
 }
Ejemplo n.º 2
0
 public static void Invoke(this IESFunction func, params IESObject[] args)
 {
     if (func != null)
     {
         func.Invoke(args);
     }
 }