namespace ProxyInterfaceSourceGeneratorTests.Source.Disposable { public class Explicit : IDisposable, IUpdate { string IUpdate.Name => throw new NotSupportedException(); event EventHandler? IUpdate.Update { add { throw new NotSupportedException(); } remove { throw new NotSupportedException(); } } void IDisposable.Dispose() { throw new NotSupportedException(); } } }