Answers for "while in do while"

0

While

FunctionPointerExample objFunctionPointerExample = new FunctionPointerExample();

//Call GetName function using TestDelegate
TestDelegate objDelegate1 = new TestDelegate(objFunctionPointerExample.GetName);
objDelegate1.Invoke("Mukesh Kumar");
Posted by: Guest on July-16-2021

Browse Popular Code Answers by Language