--> A delegate in C# is used to represent a function/(Method). --> A delegate can be used to represent one or more functions(s)/(Method). --> A delegate in C# is same as function pointer in C++. --> If a delegate representing O nly one Method then, it is known as Single Cast Delegate . --> If a delegate representing more than one method(s) then it is known as multi cast Delegate. --> If a delegate is representing a method without any name ( Anonymous Method ), then it is known as Anonymous Delegate. We Use 3 Steps to work with Delegate:- Creating a Delegate Instantiating the Delegate Invoking the Delegate Let us Consider a function like:-> public void Display(string S) { //Code } We use 3 steps of Delegate like:-> 1. Creati...
Everything about C# .net, we will cover in this tutorials step by step.