Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace лямбды1
- {
- class Program
- {
- delegate void Action();
- static void Main()
- {
- Action a = () => Console.WriteLine("0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10"); //[1]лямбда
- a();
- Console.ReadKey();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment