M
MuZZy
HI,
Say i have a class(on C++) which has an unmanaged STL member of STRMAP which is a define for
map<string, string>.
class CL
{
public CL(){mp = new STRMAP()};
public void Dispose(delete mp);
STRMAP *mp; //unmamaged object
}
member affects how the class objectIs it enough to just "delete mp" to remove the stl object form
memory? Does having such an unmanaged wil be collected by GC?
Thank you,
Andrey
Say i have a class(on C++) which has an unmanaged STL member of STRMAP which is a define for
map<string, string>.
class CL
{
public CL(){mp = new STRMAP()};
public void Dispose(delete mp);
STRMAP *mp; //unmamaged object
}
member affects how the class objectIs it enough to just "delete mp" to remove the stl object form
memory? Does having such an unmanaged wil be collected by GC?
Thank you,
Andrey