AntMeNet / AntMeCore

This repository includes the whole simulation/backend Part of the AntMe! Engine and the AntMe! Simulation Calculation.
http://www.antme.net
MIT License
35 stars 5 forks source link

Use the Event-Invoker of C# 6 #28

Closed tomwendel closed 8 years ago

tomwendel commented 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();

reicheltp commented 8 years ago

Fixed with PR #44