Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
汎用オブジェクトを使用するクラスがあります。汎用オブジェクトは IDisposable インターフェイスを実装する必要があります。クラスは IDisposable も実装する必要があります。
public class MyGenericClass<T> where T : IDisposable
現在、この汎用オブジェクトではインターフェイスを実装していますが、クラスは実装していません。両方がインターフェースを実装することは可能ですか? はいの場合、その方法。
public class MyGenericClass<T> : IDisposable where T : IDisposable { public void Dispose() { throw new NotImplementedException(); } }