ACAT.Extensions.Default.FunctionalAgents.LectureManager.LectureManagerMainForm.isEnd C# (CSharp) Method

isEnd() private method

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