blogspot visit counter
Showing posts with label Asp.net Delegates. Show all posts
Showing posts with label Asp.net Delegates. Show all posts

Friday, 23 May 2014

Delegate in c#

Delegate in c#
Delegate :- Delegates in C# are objects which points towards a function which matches its signature. Delegates are reference type used to encapsulate a method with a specific signature. Delegates are similar to function pointers in C++; however, delegates are type safe and secure.
Features of delegate

    A delegate represents a class.
    delegate is type-safe.
    We can use delegates both for static and instance methods
    We can combine multiple delegates into a single delegate.
    Delegates are often used in event-based programming, such as


Related Posts Plugin for WordPress, Blogger...