• +91 9723535972
  • info@interviewmaterial.com

DotNet Interview Questions and Answers

Question - What are multicast delegates ? give me an example ?

Answer -   Delegate that can have more than one element in its invocation List. using System; namespace SampleMultiCastDelegate {   class MultiCast   {     public delegate string strMultiCast(string s);   } } MainClass defines the static methods having same signature as delegate. using System; namespace SampleMultiCastDelegate {     public class MainClass   {     public MainClass()     {      }     public static string Jump(string s)     {       Console.WriteLine("Jump");       return String.Empty;     }     public static string Run(string s)     {       Console.WriteLine("Run");       return String.Empty;     }     public static string Walk(string s)     {       Console.WriteLine("Walk");       return String.Empty;           }   } } The Main class: using System; using System.Threading; namespace SampleMultiCastDelegate {     public class MainMultiCastDelegate

Comment(S)

Show all Coment

Leave a Comment




NCERT Solutions

 

Share your email for latest updates

Name:
Email:

Our partners