Fixed SA1000 warnings (keyword should be followed by a space)
Contributes to #877 (closed).
This merge request fixes all SA1000 warnings by StyleCop. It inserts spaces after keywords so that e.g. if(condition)
turns into if (condition)
.
I used Visual Studio's automatic code formatting for this which affects the entire file, so likely other warnings have also already been resolved by this.