ACAT.Extensions.Default.FunctionalAgents.LectureManager.LectureManagerMainForm.isEnd C# (CSharp) Метод

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

Have we reched the end of the text stream?
private isEnd ( String text, int index ) : bool
text String input text
index int starting index
Результат bool
        private bool isEnd(String text, int index)
        {
            return index >= text.Length;
        }