<PackageReference Include="NETStandard.Library" Version="2.0.0-preview2-25401-01" />

System.Globalization.NumberFormatInfo

namespace System.Globalization { public sealed class NumberFormatInfo : ICloneable, IFormatProvider { public int CurrencyDecimalDigits { get; set; } public string CurrencyDecimalSeparator { get; set; } public string CurrencyGroupSeparator { get; set; } public int[] CurrencyGroupSizes { get; set; } public int CurrencyNegativePattern { get; set; } public int CurrencyPositivePattern { get; set; } public string CurrencySymbol { get; set; } public static NumberFormatInfo CurrentInfo { get; } public DigitShapes DigitSubstitution { get; set; } public static NumberFormatInfo InvariantInfo { get; } public bool IsReadOnly { get; } public string NaNSymbol { get; set; } public string[] NativeDigits { get; set; } public string NegativeInfinitySymbol { get; set; } public string NegativeSign { get; set; } public int NumberDecimalDigits { get; set; } public string NumberDecimalSeparator { get; set; } public string NumberGroupSeparator { get; set; } public int[] NumberGroupSizes { get; set; } public int NumberNegativePattern { get; set; } public int PercentDecimalDigits { get; set; } public string PercentDecimalSeparator { get; set; } public string PercentGroupSeparator { get; set; } public int[] PercentGroupSizes { get; set; } public int PercentNegativePattern { get; set; } public int PercentPositivePattern { get; set; } public string PercentSymbol { get; set; } public string PerMilleSymbol { get; set; } public string PositiveInfinitySymbol { get; set; } public string PositiveSign { get; set; } public NumberFormatInfo(); public object Clone(); public object GetFormat(Type formatType); public static NumberFormatInfo GetInstance(IFormatProvider formatProvider); public static NumberFormatInfo ReadOnly(NumberFormatInfo nfi); } }