Hei Admin
I am new across C# programming language and coding part of other programming language as well. I am confused about the usage of delegates in C#. What is the need of it in console base programming i and why is It connected with event handling in C#.
Please rectify this problem using your simple example and basic facts of it.
Munesh SharmaPosted May 15, 2015, 1:18 AM
A delegate can be seen as a placeholder for a/some method(s).
Typical use is of course events. All the OnEventX delegate to the methods the user defines.
http://dotnet-munesh.blogspot.in/2013/12/delegate-in-dot-net.html
Nanhe SiddiquePosted May 15, 2015, 12:56 AM
read this link
http://www.codeproject.com/Articles/85296/important-uses-of-Delegates-and-Events
it may help you