Exemplo n.º 1
0
 private static void Show(MultipleOfEventArgs e)
 {
     Console.WriteLine($"{e.Value} is a multiple of {e.Text} reached! ");
 }
Exemplo n.º 2
0
 public static void ProcessMultipleOfFiveReached(object sender, MultipleOfEventArgs e)
 {
     Show(e);
 }
Exemplo n.º 3
0
 public static void ProcessSourceLambda(MultipleOfEventArgs e, string text)
 {
     Console.WriteLine($"LAMBDA SOURCE CALLEDS {text} for {e.Value} / {e.Text}");
 }