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