TimePasses/Util/OnDispose.cs
2024-06-19 10:30:45 -04:00

20 lines
365 B
C#

namespace TimePasses.Util;
internal class OnDispose : IDisposable {
private bool _disposed;
private readonly Action _action;
internal OnDispose(Action action) {
this._action = action;
}
public void Dispose() {
if (this._disposed) {
return;
}
this._disposed = true;
this._action();
}
}