Hi I'm having this really weird issue with C#.
I'm trying to do a modulu operation:
double stepSize = 3.6;
if (180.0 % stepSize != 0) DoStuff();
And 180.0 % 3.6 = 0 -> "proof"
But for some reason C# returns: 3.6
Do any one have an explanation for that