Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Dispose() [2/2]

override void System.IO.IsolatedStorage.IsolatedStorageFileStream.Dispose ( bool disposing)
inlineprotectedvirtual

Reimplemented from System.IO.FileStream.

Definition at line 158 of file IsolatedStorageFileStream.cs.

159 {
160 try
161 {
162 if (disposing && _fs != null)
163 {
164 _fs.Dispose();
165 }
166 }
167 finally
168 {
169 base.Dispose(disposing);
170 }
171 }
override void Dispose(bool disposing)

References System.IO.IsolatedStorage.IsolatedStorageFileStream._fs, and System.IO.FileStream.Dispose().