using System; namespace JetBrains.Util { public static class EmptyAction { public static readonly Action Instance = () => { }; } // ReSharper disable StaticFieldInGenericType public static class EmptyAction { public static readonly Action Instance = t => { }; } public static class EmptyAction { public static readonly Action Instance = (t1, t2) => { }; } public static class EmptyAction { public static readonly Action Instance = (t1, t2, t3) => { }; } // ReSharper restore StaticFieldInGenericType }