Answer Posted / 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 |
Post New Answer View All Answers
What is lazy keyword in c#?
What is a partial method?
Is it possible to execute multiple catch block for a single try statement?
What is the implicit name of the parameter that gets passed into the set method/property of a class?
What is the difference between class and namespace?
Why are c# strings immutable?
What does writeline mean?
What is the use of tryparse in c#?
Explain how many types of exception handlers are there in .net?
What happens if a static constructor throws an exception?
What is object pool in .net?
What are Types of assemblies that can be created in dotnet
What is extension method in c# and how to use them?
Why do we use static methods in c#?
What is Dependency of Injection?