41
1
using System;
2
3
public class Program
4
{
5
public static void Main()
6
{
7
// * Action Delegate *
8
Action<string> PerformActionDoNotReturn = new Action<string>(WriteInConsole);
9
// can be also called as PerformActionDoNotReturn.Invoke("asasasas");
10
PerformActionDoNotReturn("Yeah i am anAction");
11
12
13
// *Func Delegate*
14
Func<int,int> PerformActionReturnMeSomething = new Func<int,int>(DoubleMyMoney);
15
Console.WriteLine(PerformActionReturnMeSomething(10000));
16
17
// *Predicate Delegate*
18
Predicate<object> checkStringType = new Predicate<object>(IsThisString);
19
Console.WriteLine(checkStringType(123));
20
Console.WriteLine(checkStringType("fddfd"));
21
22
23
}
24
25
static void WriteInConsole(string str)
26
{
27
Console.WriteLine(str);
28
}
29
30
static int DoubleMyMoney(int mymoney)
31
{
32
return mymoney * mymoney;
33
34
}
35
36
static bool IsThisString(object str)
37
{
38
return str is string ? true : false;
39
}
40
41
}
Cached Result
Checking password P@ssw0rd1, is it valid? True
Checking password 1dr0wss@P, is it valid? False
Checking password 1dr0wss@P, is it valid? False