Exemplo n.º 1
0
        public void ToDecimalStringTest()
        {
            BigUInt bui    = new BigUInt("DEADBEEF");
            string  decStr = bui.ToDecimalString();

            Assert.IsNotNull(decStr);
            Assert.IsTrue("3735928559".Equals(decStr));
        }