vote up 4 vote down star

I'm trying to Dispose of an IDisposable object(FileStream^ fs) in managed C++ (.Net 2.0) and am getting the error

'Dispose' : is not a member of 'System::IO::FileStream'

It says that I should invoke the destructor instead. Will calling

fs->~FileStream();

call the dispose method on the FileStream object? Why can't I call Dispose?

flag

I had this problem too, thanks for asking it. – demoncodemonkey Jun 4 at 13:01

1 Answer

vote up 5 vote down check

The correct pattern is to just delete the object:

delete fs;

This will be translated into a call to Dispose()

See this post for some of the details of what is going on under the hood. The advantage of this idiom is that it allows you to write:

{
  FileStream fs(...)
  ...
}

And have the Dispose method called correctly ... equivalent to a using block in C#. The file stream object is still allocated on the managed heap.

link|flag
Even better is the ways this automatically chains through members defined with stack style semantics. – morechilli Dec 8 '08 at 17:24
Nice simple answer, thanks – demoncodemonkey Jun 4 at 13:01
Forgot this and used this answer again. I wish I could accept/vote up twice! – brian Jul 23 at 3:30

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.