Round Off decimal values in C# - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T10:10:41Z http://stackoverflow.com/feeds/question/780570 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/780570/round-off-decimal-values-in-c 0 Round Off decimal values in C# Girish1984 2009-04-23T06:56:34Z 2009-04-23T08:39:57Z <p>how do i round off decimal values ?<br /> Example : </p> <p>decimal Value = " 19500.98"</p> <p>i need to display this value to textbox with rounded off like " 19501 "</p> <p>if decimal value = " 19500.43" </p> <p>then</p> <p>value = " 19500 "</p> http://stackoverflow.com/questions/780570/round-off-decimal-values-in-c/780577#780577 2 Answer by Paul Alexander for Round Off decimal values in C# Paul Alexander 2009-04-23T06:58:09Z 2009-04-23T06:58:09Z <p>Math.Round( value, 0 )</p> http://stackoverflow.com/questions/780570/round-off-decimal-values-in-c/780579#780579 7 Answer by Jon Skeet for Round Off decimal values in C# Jon Skeet 2009-04-23T06:58:28Z 2009-04-23T07:08:52Z <p>Look at <a href="http://msdn.microsoft.com/en-us/library/3s2d3xkk.aspx" rel="nofollow"><code>Math.Round(decimal)</code></a> or <a href="http://msdn.microsoft.com/en-us/library/ms131274.aspx" rel="nofollow">the overload which takes a <code>MidpointRounding</code> argument</a>.</p> <p>Of course, you'll need to parse and format the value to get it from/to text. If this is input entered by the user, you should probably use <code>decimal.TryParse</code>, using the return value to determine whether or not the input was valid.</p> <pre><code>string text = "19500.55"; decimal value; if (decimal.TryParse(text, out value)) { value = Math.Round(value); text = value.ToString(); // Do something with the new text value } else { // Tell the user their input is invalid } </code></pre> http://stackoverflow.com/questions/780570/round-off-decimal-values-in-c/780604#780604 0 Answer by NinethSense for Round Off decimal values in C# NinethSense 2009-04-23T07:06:05Z 2009-04-23T07:10:09Z <pre><code>d = decimal.Round(d); </code></pre> http://stackoverflow.com/questions/780570/round-off-decimal-values-in-c/780813#780813 0 Answer by Amby for Round Off decimal values in C# Amby 2009-04-23T08:39:57Z 2009-04-23T08:39:57Z <p>Try this...</p> <pre><code> var someValue=123123.234324243m; var strValue=someValue.ToString("#"); </code></pre>