Files
TheXamlGuy/Framework/Core/Extensions/IDisposableExtensions.cs
T
2022-11-01 15:26:08 +00:00

14 lines
265 B
C#

using System;
namespace TheXamlGuy.Framework.Core
{
public static class IDisposableExtensions
{
public static T Dispose<T>(this T target) where T : IDisposable
{
target.Dispose();
return target;
}
}
}