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