If you always want the printed value to include 2 digits for consistency, you can just multiple by 100 and truncate the result.
value = Math.Truncate(value * 100m);
This would provide the value you specified in both cases, but also provide a similar result for 2353.6
(-> 235360
).