6b6e5d04a0
* Do not redefine interfaces. * Improve code style, readability and performance after initial code review * Implemented unit tests for the interface inheritance * Cleaned up unit tests. * Completely remove output helper.
9 lines
179 B
C#
9 lines
179 B
C#
namespace ProxyInterfaceSourceGeneratorTests.Source.Disposable
|
|
{
|
|
public interface IUpdate<T>
|
|
{
|
|
event EventHandler<T>? Update;
|
|
|
|
string Name { get; }
|
|
}
|
|
} |