Add support for Events (#23)

* event wip...

* Add support for 'event'

* event example
This commit is contained in:
Stef Heyenrath
2021-08-03 21:03:45 +02:00
committed by GitHub
parent 7b158adadc
commit c536e194e7
8 changed files with 228 additions and 159 deletions
+10 -6
View File
@@ -1,7 +1,11 @@
namespace DifferentNamespace
{
public class Address
{
public int HouseNumber { get; set; }
}
using System;
namespace DifferentNamespace
{
public class Address
{
public int HouseNumber { get; set; }
public event EventHandler<EventArgs> MyEvent;
}
}