Answers for "what type of built in delegates can we use in c#"

C#
0

what are delegates and how to use them c#

public delegate void MyDelegate(string text);
Posted by: Guest on December-23-2020
0

what are delegates and how to use them c#

myDelegate d1 = new myDelegate(Method1);myDelegate d2 = new myDelegate(Method2);myDelegate multicastDelegate = (myDelegate)Delegate.Combine(d1, d2);multicastDelegate.Invoke();
Posted by: Guest on December-23-2020

Code answers related to "what type of built in delegates can we use in c#"

C# Answers by Framework

Browse Popular Code Answers by Language