using System; public class Test { delegate void TestDelegate(string s); public static void Main() { TestDelegate test; test = (s => Console.WriteLine(s)); test += (s => Console.WriteLine(s)); test += (s => Console.WriteLine(s)); test("foo"); } }