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

How is the memory managed in C#.

1 Answers  


Are classes passed by reference in c#?

0 Answers  


Why do we use inheritance in c#?

0 Answers  


Is string nullable c#?

0 Answers  


Is it possible to force garbage collector to run?

0 Answers  






Suppose in a scenario if we want to display information only until 4.00 p.m and after that means after 4.00 p.m if any one tries to access the information it should give error mesage. Then how will you write a delegate for this ? Give coding.

1 Answers   HP, nTech Solutions, Primetech Software, PS,


Oops concepts ?

2 Answers   Accenture, Digital GlobalSoft,


List the difference between interface and abstract class?

0 Answers  


What is the difference between wrapper class and primitive?

0 Answers  


What is difference between singleordefault and firstordefault?

0 Answers  


Hi!!! my question is how we can apply or do Themes in C#.NET? please any sample or website from where i can get the answer.

1 Answers  


What is jit? What are the different types of jit?

0 Answers  


Categories