PowerArgs.CommandLineArgumentsDefinitionFactory.Create C# (CSharp) Method

Create() public static method

Creates a factory that can create a definition from a base definition
public static Create ( CommandLineArgumentsDefinition>.Func fromOtherImpl ) : ICommandLineArgumentsDefinitionFactory
fromOtherImpl CommandLineArgumentsDefinition>.Func An implementation that can create one definition from another
return ICommandLineArgumentsDefinitionFactory
        public static ICommandLineArgumentsDefinitionFactory Create(Func<CommandLineArgumentsDefinition, CommandLineArgumentsDefinition> fromOtherImpl)
        {
            return new CommandLineArgumentsDefinitionFactory(fromOtherImpl, null);
        }

Same methods

CommandLineArgumentsDefinitionFactory::Create ( CommandLineArgumentsDefinition>.Func fromOtherImpl, Func fromNothingImpl ) : ICommandLineArgumentsDefinitionFactory
CommandLineArgumentsDefinitionFactory::Create ( Func fromNothingImpl ) : ICommandLineArgumentsDefinitionFactory