Advertisement
wingman007

C#_OOP_Features_DelegateTest

Jun 5th, 2014
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.32 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 App1b
  8. {
  9.     // Declare delegate -- defines required signature:
  10.     delegate double MathAction(double num);
  11.  
  12.     delegate void MyDelgate(string message);
  13.  
  14.     class DelegateTest
  15.     {
  16.         // Regular method that matches signature:
  17.         double Double(double input)
  18.         {
  19.             return input * 2;
  20.         }
  21.  
  22.         static public void Test()
  23.         {
  24.             // 1) Named Method
  25.             DelegateTest p = new DelegateTest();
  26.             MathAction d1 = p.Double;
  27.             // MathAction d1 = new MathAction(Double);
  28.             Console.WriteLine("The delagate says {0}", d1(3.14));
  29.  
  30.             // 2) Anonymous function
  31.             d1 = delegate(double input)
  32.             {
  33.                 return input * input;
  34.             };
  35.             Console.WriteLine("The delagate says {0}", d1(3.14));
  36.  
  37.             // 3) Lambda
  38.             d1 = s => s * s * s;
  39.             Console.WriteLine("The delagate says {0}", d1(3.14));
  40.  
  41.             // functional
  42.             Console.WriteLine("Functional = {0}", p.Calculate(d1, 2.71));
  43.         }
  44.  
  45.         public double Calculate(MathAction action, double param)
  46.         {
  47.             return action(param);
  48.         }
  49.     }
  50. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement