mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-01-11 19:44:55 +00:00
chore: Fixing warning on Net Standard
This commit is contained in:
@@ -940,7 +940,11 @@ namespace ICD.Common.Utils.Globalization
|
|||||||
return cultureInfo;
|
return cultureInfo;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static CultureInfo[] GetCultures(CultureTypes types)
|
public
|
||||||
|
#if !SIMPLSHARP
|
||||||
|
new
|
||||||
|
#endif
|
||||||
|
static CultureInfo[] GetCultures(CultureTypes types)
|
||||||
{
|
{
|
||||||
return s_DictAvailableCulturesByName.Where(de => (de.Value & types) != 0)
|
return s_DictAvailableCulturesByName.Where(de => (de.Value & types) != 0)
|
||||||
.Select(de => new IcdCultureInfo(de.Key))
|
.Select(de => new IcdCultureInfo(de.Key))
|
||||||
|
|||||||
Reference in New Issue
Block a user