redSkywalker

лямбды1

Mar 15th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.42 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace лямбды1
  8. {
  9.     class Program
  10.     {
  11.         delegate void Action();
  12.  
  13.         static void Main()
  14.         {
  15.             Action a = () => Console.WriteLine("0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10"); //[1]лямбда
  16.  
  17.             a();
  18.             Console.ReadKey();
  19.         }
  20.     }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment