Ejemplo n.º 1
0
 public static void SendEvent <T>(this ICanSendEvent self, T e)
 {
     self.GetArchitecture().SendEvent <T>(e);
 }
Ejemplo n.º 2
0
 public static void SendEvent <T>(this ICanSendEvent self, T t)
 {
     self.Architecture.SendEvent <T>(t);
 }
Ejemplo n.º 3
0
 public static void SendEvent <T>(this ICanSendEvent self) where T : new()
 {
     self.GetArchitecture().SendEvent <T>();
 }
Ejemplo n.º 4
0
 public static void SendEvent <T>(this ICanSendEvent self, T t) where T : struct
 {
     self.GetArchitecture().SendEvent <T>(t);
 }