using System; public class Test { delegate void WriteDelegate(string msg, params object[] args); public static void Main() { WriteDelegate w = Console.Write; w("Hello"); w(", {0}", "world!"); } }