CodeBox.CodeLexer.TokenList.Add C# (CSharp) Метод

Add() публичный Метод

public Add ( int index, TokenType type, string value ) : void
index int
type TokenType
value string
Результат void
        public void Add(int index, TokenType type, string value)
        {
            tokens.Insert(index, new Token(type, value, null));
        }