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