2
Answer (Choose 1 answer)
A. C#.NET
B.NET
C.NETC#
D. C#
}
}
Finish
delegate void CallBack(string s);
class Program{
public event CallBack evt;
static void Main(){
Program p = new Program();
p.evt += delegate (string s){
Console.Write(s);
};
p.evt += delegate{
Console.WriteLine("C#");
};p.evt(".NET");
Console.ReadLine();
The output will be: