using System; public static class ActionExt { public static void InvokeIfNotNull(this Action action) { if (action != null) action.Invoke(); } }