我正试图找到一种方法来舍入到整数,但我找不到提供解决方案的线程。
我目前正在使用'Math.Round',它似乎没有舍入到最接近的整数。我想使用诸如'Math.RoundToNearest(value)'之类的东西,它将四舍五入到最接近的十分之一或百分之一。例如:
//Current implementation
var product = 43 * 54 //equals 2322;
Math.Round(product); //returns 2322
//Sought after implementation
var product = 43 * 54; //equals 2322
Math.RoundToNearest(product); //returns 2000 or 2300 depending on preference
这有可能实现吗?我似乎无法找到与此匹配的线程。