bigloo.foreign.strtoull C# (CSharp) Method

strtoull() public static method

public static strtoull ( byte s, int i, int radix ) : long
s byte
i int
radix int
return long
        public static long strtoull( byte[] s, int i, int radix )
        {
            return strtoll(s, i, radix);
        }
foreign