/// <summary> /// Continues the command with the child one. /// </summary> /// <param name="parent">The parent.</param> /// <param name="child">The child.</param> /// <returns></returns> public static Cmdlet ContinueWith(this Cmdlet parent, Cmdlet child) { child.AsChildOf(parent).InvokeImmediate(); return(child); }