| 1234567891011121314151617181920212223242526272829303132333435 |
- // -----------------------------------------------------------------------
- // Copyright (c) Microsoft Corporation. All rights reserved.
- // -----------------------------------------------------------------------
- #if !SILVERLIGHT
- using System;
- namespace System.IO
- {
- public class TemporaryFile : IDisposable
- {
- private string _fileName;
- public TemporaryFile()
- {
- _fileName = Path.GetTempFileName();
- }
- public string FileName
- {
- get { return _fileName; }
- }
-
- public void Dispose()
- {
- if (_fileName != null)
- {
- File.Delete(_fileName);
- _fileName = null;
- }
- }
- }
- }
- #endif
|