PowerArgs.CommandLineArgument.CommandLineArgument C# (CSharp) Method

CommandLineArgument() private method

private CommandLineArgument ( ) : System
return System
        internal CommandLineArgument()
        {
            MustBeRevivable = true;
            overrides = new AttrOverride(GetType());
            Aliases = new AliasCollection(() => { return Metadata.Metas<ArgShortcut>(); }, () => { return IgnoreCase; });
            PropertyInitializer.InitializeFields(this, 1);
            ArgumentType = typeof(string);
            Position = -1;
        }

Same methods

CommandLineArgument::CommandLineArgument ( Type t, string defaultAlias, bool ignoreCase = true ) : System