public InteractiveFormatParams(Func<IInteractiveFormatArgs, string> accessor, IInteractiveFormatArgs argsPreset, string template) : this() { this.accessor = accessor; this.argsPreset = argsPreset; this.Template = template; }
protected InteractiveFormatParams() { this.accessor = null; this.argsPreset = null; this.Template = DefaultTemplate; }
public InteractiveFormatParams(Func<IInteractiveFormatArgs, string> accessor, IInteractiveFormatArgs argsPreset) : this() { this.accessor = accessor; this.argsPreset = argsPreset; }