bigloo.foreign.strtod C# (CSharp) Method

strtod() public static method

public static strtod ( byte s, int i ) : double
s byte
i int
return double
        public static double strtod( byte[] s, int i )
        {
            int len = s.Length;

            return ((len == 0) ? 0 : Double.Parse( newstring( s ) ));
        }
foreign