Glob.Identifier.Identifier C# (CSharp) Method

Identifier() public method

public Identifier ( string value ) : System.Collections.Generic
value string
return System.Collections.Generic
        public Identifier(string value)
            : base(GlobNodeType.Identifier)
        {
            Value = value;
        }
Identifier