Add project files.
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
namespace TheXamlGuy.Framework.Core.Extensions
|
||||
{
|
||||
public static class IDisposerExtensions
|
||||
{
|
||||
public static void Add(this IDisposer disposer, object subject, IEnumerable<IDisposable> disposers)
|
||||
{
|
||||
disposer.Add(subject, disposers.ToArray());
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user