CodeBox.CodeLexer.TokenList.Add C# (CSharp) Méthode

Add() public méthode

public Add ( int index, TokenType type, string value ) : void
index int
type TokenType
value string
Résultat void
        public void Add(int index, TokenType type, string value)
        {
            tokens.Insert(index, new Token(type, value, null));
        }