using System; using System.ComponentModel; using System.Diagnostics; using JetBrains.Annotations; namespace Test.Lifetimes { public static class GeneralEx { [DebuggerStepThrough] [EditorBrowsable(EditorBrowsableState.Never)] public static T With(this T control, [InstantHandle, NotNull] Action action) { action(control); return control; } } }