System.DateTimeParse.ParseDigits C# (CSharp) Method

ParseDigits() static private method

static private ParseDigits ( __DTString &str, int digitLen, int &result ) : bool
str __DTString
digitLen int
result int
return bool
        internal static bool ParseDigits(ref __DTString str, int digitLen, out int result) {
            if (digitLen == 1) {
                // 1 really means 1 or 2 for this call
                return ParseDigits(ref str, 1, 2, out result);
            }
            else {
                return ParseDigits(ref str, digitLen, digitLen, out result);
            }
        }

Same methods

DateTimeParse::ParseDigits ( __DTString &str, int minDigitLen, int maxDigitLen, int &result ) : bool