Antlr4.AntlrTool.Option.Option C# (CSharp) Method

Option() public method

public Option ( string fieldName, string name, OptionArgType argType, string description ) : System.Collections.Generic
fieldName string
name string
argType OptionArgType
description string
return System.Collections.Generic
            public Option(string fieldName, string name, OptionArgType argType, string description)
            {
                this.fieldName = fieldName;
                this.name = name;
                this.argType = argType;
                this.description = description;
            }
        }

Same methods

AntlrTool.Option::Option ( string fieldName, string name, string description ) : System.Collections.Generic
AntlrTool.Option