| 123456789101112131415161718192021 |
- // -----------------------------------------------------------------------
- // Copyright (c) Microsoft Corporation. All rights reserved.
- // -----------------------------------------------------------------------
- using System;
- namespace System
- {
- public class DisposableObject : IDisposable
- {
- public int DisposeCount
- {
- get;
- private set;
- }
- public void Dispose()
- {
- DisposeCount++;
- }
- }
- }
|