MegaApi.Rsa.toppart C# (CSharp) 메소드

toppart() 공개 정적인 메소드

public static toppart ( uint x, int start, int len ) : ulong
x uint
start int
len int
리턴 ulong
        public static ulong toppart(uint[] x, int start, int len)
        {
            ulong n = 0;
            while (start >= 0 && len-- > 0) n = n * (ulong)bx2 + x[start--];
            return n;
        }