System.Xml.Schema.XsdDateTime.Parser.ParseTimeAndWhitespace C# (CSharp) Méthode

ParseTimeAndWhitespace() private méthode

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