System.Xml.Schema.XsdDateTime.Parser.ParseTimeAndWhitespace C# (CSharp) Method

ParseTimeAndWhitespace() private method

private ParseTimeAndWhitespace ( int start ) : bool
start int
return bool
            private bool ParseTimeAndWhitespace(int start) {
                if (ParseTime(ref start)) {
                    while(start < length ) {//&& char.IsWhiteSpace(text[start])) {
                        start ++;
                    }
                    return start == length;    
                }
                return false;
            }