我有一个目前看起来像这样的界面。但我希望它也实现IDisposable
public interface IFoo<out TOut>() where TOut : class, new()
{
}
我想说点什么
public interface IFoo<out TOut>() : IDisposable : where TOut : class, new()
{
}
我该怎么做?
答案 0 :(得分:6)
你的代码中有一些错误,它们无法编译:
public interface IFoo<out TOut> where TOut : class, new()
{
}
public interface IFoo2<out TOut> : IDisposable where TOut : class, new()
{
}
IDisposable : where
的方法不正确。应删除:
。