Ejemplo n.º 1
0
 static void Main()
 {
     WithOutParam o = delegate
     {
         return;
     };
 }
Ejemplo n.º 2
0
 static void Main()
 {
     WithOutParam o = (string l) => { return; };
 }
Ejemplo n.º 3
0
 static void Main()
 {
     WithOutParam o = (s) => Console.WriteLine();
 }