NetBase.Sql.QueryBuilder.ValueList C# (CSharp) Method

ValueList() private method

private ValueList ( ) : void
return void
        private void ValueList()
        {
            tokenizer.Match("VALUES");
            tokenizer.Match("(");

            for (int i = 0; i < ((InsertQuery)this.Query).Sets.Count; i++)
            {
                if (tokenizer.Token == ",") tokenizer.Match(",");

                string value = tokenizer.Token;
                tokenizer.GetToken();

                ((InsertQuery)this.Query).Sets[i].Value = value;
            }

            tokenizer.Match(")");
        }