Files
ProxyGenerator/tests/ProxyInterfaceSourceGeneratorTests/Source/Disposable/Explicit.cs
T
Adam Hathcock e341772cbc add csharpier
2024-05-21 16:34:46 +01:00

19 lines
506 B
C#

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