Antlr4.AntlrTool.Option.Option C# (CSharp) 메소드

Option() 공개 메소드

public Option ( string fieldName, string name, OptionArgType argType, string description ) : System.Collections.Generic
fieldName string
name string
argType OptionArgType
description string
리턴 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