Tag: Delegate
-
Delegate in c#
A delegate in C# is simillar to a FUNCTION POINTER in C or C++. Delgate can be defind as an Object which contains the address of a method. Delegate is a reference type used to encapsulate a method with a speciific signature and return type. As written in MSDN ” A Delegate is […]