CSReportDll.cReportCompiler.pGetWord C# (CSharp) Méthode

pGetWord() private méthode

private pGetWord ( String code, int &nStart ) : String
code String
nStart int
Résultat String
        private String pGetWord(String code, ref int nStart)
        {
            String c = "";
            int nLenCode = 0;
            String word = "";

            nLenCode = code.Length;

            c = code.Substring(nStart, 1);

            do
            {
                word += c;
                nStart += 1;
                if (pIsSeparator(c)) break;
                c = cUtil.subString(code, nStart, 1);
            } while (!pIsSeparator(c) && nStart < nLenCode);

            return word;
        }