I'm new to C++ (coming from C#) writing a multi-threaded C++ application and wondering what is better to use: std::thread
or its Boost counterpart?
I saw the following discussion in another Stack Overflow post, but still do not have the complete picture of why should I choose one over the other. If not starting a new program, should I use standard library or Boost threads?
Thanks!