我有一些看起来像这样的代码:
_TypePtr spType = NULL;
. . . // host the CLR and populate that type
{
BSTR fullName;
spType->get_FullName(&fullName);
wprintf(L"Got type %s\n", fullName);
}
我需要释放那个 bstr 吗?如何释放它SysFreeString()?如果不是为什么?
我有一些看起来像这样的代码:
_TypePtr spType = NULL;
. . . // host the CLR and populate that type
{
BSTR fullName;
spType->get_FullName(&fullName);
wprintf(L"Got type %s\n", fullName);
}
我需要释放那个 bstr 吗?如何释放它SysFreeString()?如果不是为什么?