Fork changes

This commit is contained in:
Adam Hathcock
2024-05-21 16:30:10 +01:00
parent 95b5b15cb5
commit 5f92c81965
56 changed files with 2220 additions and 1614 deletions
@@ -1,4 +1,5 @@
using System;
using System.Diagnostics.CodeAnalysis;
namespace ProxyInterfaceConsumer
{
@@ -6,11 +7,12 @@ namespace ProxyInterfaceConsumer
{
public int HouseNumber { get; set; }
public event EventHandler<EventArgs> MyEvent;
[SuppressMessage("ReSharper", "NullableWarningSuppressionIsUsed")]
public event EventHandler<EventArgs> MyEvent = null!;
public int Weird { get; set; }
public int Weird2()
{
return 0;
}
}
}
}