-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDelegate.cs
56 lines (50 loc) · 1.08 KB
/
Delegate.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
using System;
using System.Collections.Generic;
using System.Threading;
/*
*Delegate : delegate are function pointer.
* it is type safe its have the same parameter System.Delegate
*
* Delegate is to use as event
*
*
*/
namespace ConsoleApp76
{
delegate int Calculator(int n);
class Program
{
private static int _number = 100;
public static int Add(int n)
{
_number += n;
return _number;
}
public static int Multiplication(int n)
{
_number += n;
return _number;
}
public static int Division(int n)
{
_number += n;
return _number;
}
public static int GetNumber()
{
return _number;
}
public static void Main()
{
Calculator c1 = Add;
Calculator c2 = Multiplication;
Calculator c3 = Division;
c1(12);
Console.WriteLine("After c1 is : " + GetNumber());
c2(5);
Console.WriteLine("After c1 is : " + GetNumber());
c3(2);
Console.WriteLine("After c1 is : " + GetNumber());
}
}
}