What is Delegate in C#
Explanation and Examples of delegates in C# , where we use delegates in c# and how we use delegates
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Ring ZhongPosted Sep 26, 2013, 4:13 AM
Sanjeeb LenkaPosted Sep 26, 2013, 12:29 AM
A delegate in C# is similar to a FUNCTION POINTER in C or C++. Delegate can be defined as an object, which contains the address of a method. Delegate is a reference type used to encapsulate a method with a specific signature and return type.
Refer to this link for detail description.
http://www.c-sharpcorner.com/uploadfile/rekhasingh1610/delegates-in-C-Sharp/
http://www.c-sharpcorner.com/UploadFile/dhananjaycoder/C-Sharp-delegates/