1FunctionPointerExample objFunctionPointerExample = new FunctionPointerExample();
2
3//Call GetName function using TestDelegate
4TestDelegate objDelegate1 = new TestDelegate(objFunctionPointerExample.GetName);
5objDelegate1.Invoke("Mukesh Kumar");
1FunctionPointerExample objFunctionPointerExample = new FunctionPointerExample();
2
3//Call GetName function using TestDelegate
4TestDelegate objDelegate1 = new TestDelegate(objFunctionPointerExample.GetName);
5objDelegate1.Invoke("Mukesh Kumar");
1while True:
2 print("A period of time.")
3 # "we chatted for a while"
4 print("Similar: time spell stretch stint")
5
6 print("at the same time; meanwhile.")
7 # "he starts to draw. talking for a while"
8
9"""
10CONJUCTION :D
11"""
12
13