0

我有一个使用通用对象的类。泛型对象需要实现 IDisposable 接口。类还需要实现 IDisposable。

public class MyGenericClass<T> where T : IDisposable

现在在这个通用对象中实现了接口,但类没有。两者都有可能实现接口吗?如果是的话如何。

4

2 回答 2

4
public class MyGenericClass<T> : IDisposable
    where T : IDisposable
{
    public void Dispose()
    {
        throw new NotImplementedException();
    }
}
于 2013-04-09T13:47:43.063 回答
2

是的,有可能:

公共类 MyGenericClass: IDisposable where T : IDisposable

于 2013-04-09T13:49:39.930 回答