Closed tomwendel closed 8 years ago
Replace all the old Syntax for Event Invokation with the new Stuff from C# 6.0
old: if (EventName != null) EventName()
new: EventName?.Invoke();
Fixed with PR #44
Replace all the old Syntax for Event Invokation with the new Stuff from C# 6.0
old: if (EventName != null) EventName()
new: EventName?.Invoke();