Sean Farrow wrote
Hi:
I need to convert and std::string to an int, should I use Lexical_cast
or can I just use static_cast?
Sean.
lexical_cast. In general you use static_cast when you want to convert
numeric data types such as ints to floats.
-delfin