Skip to content

Tag Archives: CSharp-Delegates

A type-safe function pointer is a delegate. It means that the delegate contains a reference to a method or function, and that when we invoke… Read More
In C#, a delegate is an object which refers to a method or it is a reference type variable that can hold a reference to… Read More
A Delegate is an object which refers to a method or you can say it is a reference type variable that can hold a reference… Read More
Prerequisite: Delegates in C# When we create a custom delegate we have to follow the following steps: Step 1: Declare a custom delegate with the… Read More
A Predicate delegate is an in-built generic type delegate. This delegate is defined under System namespace. It works with those methods which contain some set… Read More
Action delegate is an in-built generic type delegate. This delegate saves you from defining a custom delegate as shown in the below examples and make… Read More
A delegate is an object which refers to a method or you can say it is a reference type variable that can hold a reference… Read More

Start Your Coding Journey Now!