In our old code I'vew noticed a few examples of code like the following:
MyFortune = Decimal.Add(MyFortune, .01m);
Instead of using Add method it's simpler to use + sign (
Addition Operator ).
E.g.
MyFortune = Decimal.Add(MyFortune, .01m);
can be rewritten as
MyFortune += .01m;
Comment like this should be added to all methods, that have corresponding operators.
I've posted a suggestion to MS Feedback