Advertisement
wingman007

DelegateClosureTestsC#

Jun 8th, 2016
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.04 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 World
  8. {
  9.     public delegate double MathAction(double n);
  10.  
  11.     public delegate string ClosureDemo();
  12.  
  13.     public delegate void MyEventHandler(object source, EventArgs arg);
  14.     class DelegateTest
  15.     {
  16.         public double Double(double m)
  17.         {
  18.             return m * 2;
  19.         }
  20.  
  21.         private int forClosure = 3;
  22.  
  23.         public void Tests()
  24.         {
  25.             int freeVariable = 5;
  26.  
  27.             // 1. Function
  28.             MathAction d1 = new MathAction(Double);
  29.             Console.WriteLine(d1(3.14));
  30.  
  31.             // 2. Anonimous function
  32.             d1 = delegate(double x) { return x * x + freeVariable + this.forClosure; };
  33.             Console.WriteLine(d1(3.14));
  34.  
  35.             // 3. Lambda expression. No return
  36.             d1 = (x) => x * x * x + freeVariable + this.forClosure;
  37.             Console.WriteLine(d1(3.14));
  38.  
  39.             // 3.2 Lambda statement. There is return
  40.             d1 = (x) => { return x * x * x + freeVariable + this.forClosure;};
  41.             Console.WriteLine(d1(3.14));
  42.  
  43.             freeVariable = 7;
  44.  
  45.             Console.WriteLine("++++++++++++++++ Closure+++++++++++++");
  46.             Console.WriteLine(Calculate(d1, 3.14));
  47.             Console.WriteLine("+++++++++++++++++++++++");
  48.  
  49.             string name = "Stoyan";
  50.             int age = 52;
  51.             ClosureDemo stoyan = delegate() { return name + age.ToString(); };
  52.            
  53.             Console.WriteLine(TestClosure(stoyan));
  54.  
  55.  
  56.             name = "Alex";
  57.             age = 22;
  58.             ClosureDemo alex = delegate() { return name + age.ToString(); };
  59.  
  60.             Console.WriteLine(TestClosure(alex));
  61.         }
  62.  
  63.         public double Calculate(MathAction action, double num)
  64.         {
  65.             return action(num);
  66.         }
  67.  
  68.         public string TestClosure(ClosureDemo c) { // MathAction
  69.             return c();
  70.             // MathAction action;
  71.  
  72.         }
  73.     }
  74. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement