When accessing a resource using Application.GetResourceStream
it returns an instance of the class StreamResourceInfo
, this class does not implement IDisposable.
Should I close\dispose the underlying stream exposed by StreamResourceInfo
when I've finished processing the stream on a WP7 device - I don't want to know about Using
or the Dispose pattern.
An example would be using the method to access a ZIP file which is contained with the ZAP package and once I have unzipped the file I don't need the Stream
instance anymore.