6 references to AllowHyphenDuringParsing
System.Private.CoreLib (6)
src\runtime\src\libraries\Common\src\System\Number.Parsing.Common.cs (1)
367if ((nextIndex < 0) && info.AllowHyphenDuringParsing() && ((uint)index < (uint)value.Length) && (TChar.CastToUInt32(value[index]) == '-'))
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.Parsing.cs (5)
369else if (info.AllowHyphenDuringParsing() && num == '-') 1081if (info.AllowHyphenDuringParsing() && SpanStartsWith(valueTrim, TChar.CastFrom('-'))) 1241else if (info.AllowHyphenDuringParsing() && TChar.CastToUInt32(value[index]) == '-') 1395else if (info.AllowHyphenDuringParsing() && TChar.CastToUInt32(value[index]) == '-') 1680if (info.AllowHyphenDuringParsing() && SpanStartsWith(valueTrim, TChar.CastFrom('-')))