HOW TO USE OF DELEGATES
i am not understand how to use
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.
Nilesh JadavPosted Jun 27, 2015, 2:29 AM
A delegate is a form of type-safe function pointer used by the .NET Framework. Delegates are often used to implement callbacks and event listeners. A delegate does not need to know anything about classes of methods it works with.
A delegate is a reference type. But instead of referring to an object, a delegate refers to a method.
Delegates are used in the following cases:
full Explanation : http://zetcode.com/lang/csharp/delegates/
Thank you !
Jaipal ReddyPosted Jun 27, 2015, 1:54 AM
Sujeet SumanPosted Jun 26, 2015, 8:12 AM
Prasham SabadraPosted Jun 26, 2015, 8:12 AM
Rajeesh MenothPosted Jun 26, 2015, 7:55 AM