Add project files.
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user