CSLE.CLS_Expression_Compiler.FindCodeKeyWord_ForEach C# (CSharp) Метод

FindCodeKeyWord_ForEach() приватный Метод

private FindCodeKeyWord_ForEach ( IList tokens, int pos ) : int
tokens IList
pos int
Результат int
        int FindCodeKeyWord_ForEach(IList<Token> tokens, int pos)
        {
            int b1;
            int fs1 = pos + 1;
            int fe1 = FindCodeAny(tokens, ref fs1, out b1);

            int b2;
            int fs2 = fe1 + 1;
            int fe2 = FindCodeAny(tokens, ref fs2, out b2);
            return fe2;
        }
        int FindCodeKeyWord_While(IList<Token> tokens, int pos)