You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Avoid unnecessary CultureInfo.CurrentCulture accesses in Enum (#38866)
* Avoid unnecessary CultureInfo.CurrentCulture accesses in Enum
Enum can only be backed by primitive numerical types, and using the IConvertible interface implementations to convert to numerical types won't pay any attention to culture, so just as there's no need to pass through the supplied provider, there's no need to access CultureInfo.CurrentCulture.
* Address PR feedback
0 commit comments