CSLE.CLS_Expression_Compiler.FindCodeKeyWord_New C# (CSharp) Method

FindCodeKeyWord_New() private method

private FindCodeKeyWord_New ( IList tokens, int pos ) : int
tokens IList
pos int
return int
        int FindCodeKeyWord_New(IList<Token> tokens, int pos)
        {
            int b1;
            int fs1 = pos + 2;
            int fe1 = FindCodeAny(tokens, ref fs1, out b1);
            if(tokens[fe1].text=="]")
            {
                fs1 = fe1 + 1;
                fe1 = FindCodeAny(tokens, ref fs1, out b1);
            }
            return fe1;
        }
        int FindCodeKeyWord_ForEach(IList<Token> tokens, int pos)