using System; using static System.Console; public class Program { public static void Main() { var numero = 123; Func func = numero.ToString; WriteLine(func("000000")); Func func2 = numero.ToString; WriteLine(func2()); Action a = delegate(string txt) { WriteLine(txt); }; Action b = txt => WriteLine(txt); Action c = WriteLine; a("abc"); b("abc"); c("abc"); } } //https://pt.stackoverflow.com/q/189905/101