SupportClass.Tokenizer.RemoveEmptyStrings C# (CSharp) Method

RemoveEmptyStrings() private method

Removes all empty strings from the token list
private RemoveEmptyStrings ( ) : void
return void
        private void RemoveEmptyStrings()
        {
            for (int index=0; index < this.elements.Count; index++)
                    if ((string)this.elements[index]== "")
                    {
                        this.elements.RemoveAt(index);
                        index--;
                    }
        }