ACAT.Extensions.Default.FunctionalAgents.LectureManager.LectureManagerMainForm.isEnd C# (CSharp) Méthode

isEnd() private méthode

Have we reched the end of the text stream?
private isEnd ( String text, int index ) : bool
text String input text
index int starting index
Résultat bool
        private bool isEnd(String text, int index)
        {
            return index >= text.Length;
        }