예제 #1
0
파일: BigInt.cs 프로젝트: taiab/nledger
        public static BigInt <T> FromLong(long value, int precision = 0)
        {
            T val;

            Empty.FromLong(out val, value);
            return(new BigInt <T>(val, precision));
        }