bigloo.foreign.strtoll C# (CSharp) Method

strtoll() public static method

public static strtoll ( byte s, int i, int radix ) : long
s byte
i int
radix int
return long
        public static long strtoll( byte[] s, int i, int radix )
        {
            int len= s.Length;

            return ((len == 0) ? 0 : parselong( s, i, len, radix ));
        }
foreign