ExtensionBase.cs
316 字节
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ExtensionGroup
{
public abstract class ExtensionBase : IDisposable
{
public void Dispose()
{
//throw new NotImplementedException();
}
}
}