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
You can always use std::vector v (or whatever type of input you expect) and then to get at the buffer you simply &v[0] and v.size() for the size.
std::vector v
&v[0]
v.size()