コード例 #1
0
ファイル: Int64Impl.cs プロジェクト: xsword911/Cosmos
        public static string GetNumberString(long aValue)
        {
            bool xIsNegative = false;

            if (aValue < 0)
            {
                xIsNegative = true;
                aValue     *= -1;
            }
            return(UInt64Impl2.GetNumberString((ulong)aValue, xIsNegative));
        }
コード例 #2
0
ファイル: UInt64Impl.cs プロジェクト: nstone101/Cosmos
 public static string ToString(ref ulong aThis)
 {
     return(UInt64Impl2.GetNumberString(aThis, false));
 }