Exemplo n.º 1
0
        public static string ToString(ref int aThis)
        {
            bool bNegative = false;

            int aValue = aThis;

            if (aValue < 0)
            {
                bNegative = true;
                aValue   *= -1;
            }

            return(GeneralIntegerImplByUInt64.ToString((UInt64)aValue, bNegative));
        }
Exemplo n.º 2
0
        public static string ToString(ref byte aThis)
        {
            byte aValue = aThis;

            return(GeneralIntegerImplByUInt64.ToString((UInt64)aValue, false));
        }