There is a Windows Implementation Library (wil), documentation available in github text, that provides wrapper class for bstr that allows manipulation of BSTR. I am porting my legacy code to WinRT component where i have replaced CComBSTR with wil::unique_bstr. In my code, it appends two strings by using a += b; Is there a method in WIL library for appending two unique_bstr?, any pointer is appreciated.
I have tried converting bstr with std::wstring and do the entire manipulation with STL, however, that needs to be changed too many places. So I want to use bstr and append two bstr.