Tag archives for Delegates
Understanding Delegates in C#
In the world of C# programming language, understanding the concept of delegates is essential for writing effective, flexible and clean code. C# is a general-purpose, object-oriented programming language designed by…
Delegates
Delegates are types that hold references to methods instead of variables. A delegate can copy the behavior of any method. To declare a delegate, you use the delegate keyword. Declaring a delegate is…