public static string GetNumberString(long aValue) { bool xIsNegative = false; if (aValue < 0) { xIsNegative = true; aValue *= -1; } return(UInt64Impl2.GetNumberString((ulong)aValue, xIsNegative)); }
public static string ToString(ref ulong aThis) { return(UInt64Impl2.GetNumberString(aThis, false)); }