PowerArgs.CommandLineArgumentsDefinitionFactory.CommandLineArgumentsDefinitionFactory C# (CSharp) Method

CommandLineArgumentsDefinitionFactory() private method

private CommandLineArgumentsDefinitionFactory ( CommandLineArgumentsDefinition>.Func fromOtherImpl, Func fromNothingImpl ) : System
fromOtherImpl CommandLineArgumentsDefinition>.Func
fromNothingImpl Func
return System
        private CommandLineArgumentsDefinitionFactory(Func<CommandLineArgumentsDefinition, CommandLineArgumentsDefinition> fromOtherImpl, Func<CommandLineArgumentsDefinition> fromNothingImpl)
        {
            this.fromOtherImpl = fromOtherImpl ?? ((other) => { throw new NotImplementedException(); });
            this.fromNothingImpl = fromNothingImpl ?? (()=> {throw new NotImplementedException();});
        }