System.Globalization.CCMath.round C# (CSharp) Method

round() public static method

A static method which rounds a double value.
public static round ( double x ) : double
x double The double value to round.
return double
	public static double round(double x) {
		return System.Math.Floor(x+0.5);
	}