I\'d like to read a binary file and use something like std::string that automatically resizes the buffer and such.
std::string
I\'m using Visual C++. What are my op
std::string should be safe to do so... you only have to be careful using .c_str() method. Use .data().
.c_str()
.data()