public bool Insert(int n, Token token) { if (n < 0 || n >= token.Length) { return(false); } tokenCollection.Insert(n, token); return(true); }