Exemplo n.º 1
0
 private void HandleThis(SomeOtherData data)
 { /* ... */
 }
Exemplo n.º 2
0
 void Handle(SomeOtherData data)
 {
     log.Info($"Some other data came through with Id {data.Id} and number {data.Number}");
 }
 private void HandleThis(SomeOtherData data)
 {
     Console.WriteLine("this is SomeOtherData");
 }