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

ParseTimeAndZoneAndWhitespace() private method

private ParseTimeAndZoneAndWhitespace ( int start ) : bool
start int
return bool
            private bool ParseTimeAndZoneAndWhitespace(int start) {
                if (ParseTime(ref start)) {
                    if (ParseZoneAndWhitespace(start)) {
                        return true;
                    }
                }
                return false;
            }