What is delegates & multicast delegate?

Answers were Sorted based on User's Feedback



What is delegates & multicast delegate?..

Answer / neerajtyagi

delegate void Del(string s);

class TestClass
{
static void Hello(string s)
{
System.Console.WriteLine(" Hello, {0}!", s);
}

static void Goodbye(string s)
{
System.Console.WriteLine(" Goodbye, {0}!", s);
}

static void Main()
{
Del a, b, c, d;

// Create the delegate object a that references
// the method Hello:
a = Hello;

// Create the delegate object b that references
// the method Goodbye:
b = Goodbye;

// The two delegates, a and b, are composed to form
c:
c = a + b;

// Remove a from the composed delegate, leaving d,
// which calls only the method Goodbye:
d = c - a;

System.Console.WriteLine("Invoking delegate a:");
a("A");
System.Console.WriteLine("Invoking delegate b:");
b("B");
System.Console.WriteLine("Invoking delegate c:");
c("C");
System.Console.WriteLine("Invoking delegate d:");
d("D");
}
}


// Output will be

Invoking delegate a:
Hello, A!
Invoking delegate b:
Goodbye, B!
Invoking delegate c:
Hello, C!
Goodbye, C!
Invoking delegate d:
Goodbye, D!

Is This Answer Correct ?    15 Yes 2 No

What is delegates & multicast delegate?..

Answer / penchal das

Delegate is method which is used to call a method number of
times..

Is This Answer Correct ?    3 Yes 2 No

Post New Answer

More C Sharp Interview Questions

Explain attributes in c#?

0 Answers  


What does == mean in c sharp?

0 Answers  


What does string intern do?

0 Answers  


Can we overload the main method in c#?

0 Answers  


What is managed code?

0 Answers  






7.What are typed data set?

2 Answers   Ebix, Mphasis,


What is a string c#?

0 Answers  


Define a class and an object?

0 Answers  


what is uniary operators and binary operators and what is the difference

1 Answers   Protech,


What is difference between write and writeline?

0 Answers  


What are the different ways of method can be overloaded?

0 Answers  


What is the example of predicate?

0 Answers  


Categories