com.alicizax.unity.cysharp..../Number/NumberFormatInfoEx.cs
陈思海 4fbea560b5 init
2025-01-09 13:57:51 +08:00

16 lines
351 B
C#

using System;
using System.Collections.Generic;
using System.Globalization;
using System.Text;
namespace System
{
internal static class NumberFormatInfoEx
{
internal static bool HasInvariantNumberSigns(this NumberFormatInfo info)
{
return info.PositiveSign == "+" && info.NegativeSign == "-";
}
}
}