Reputation: 2371
i really gotta confused ..
Please bear me i am new for .net
Upvotes: 1
Views: 98
Reputation: 4323
Maybe you should take a look at http://msdn.microsoft.com/en-us/library/ms173171.aspx
Basically Delegates are very similar to function pointers. They are like placeholders for a function. So e.g. if you want to write a class which can be customized to use different kinds of sort functions, you could create a delegate and later on fill it with a certain method.
Upvotes: 1