5 references to Argument_CultureNotSupported
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Globalization\CultureData.cs (2)
876
throw new CultureNotFoundException(nameof(culture), culture, SR.
Argument_CultureNotSupported
);
898
throw new CultureNotFoundException(nameof(culture), culture, SR.
Argument_CultureNotSupported
);
src\libraries\System.Private.CoreLib\src\System\Globalization\CultureInfo.cs (2)
156
private static string GetCultureNotSupportedExceptionMessage() => GlobalizationMode.Invariant ? SR.Argument_CultureNotSupportedInInvariantMode : SR.
Argument_CultureNotSupported
;
205
throw new CultureNotFoundException(nameof(culture), culture, SR.
Argument_CultureNotSupported
);
src\libraries\System.Private.CoreLib\src\System\Globalization\CultureNotFoundException.cs (1)
83
private static string DefaultMessage => SR.
Argument_CultureNotSupported
;