Round Off decimal values in C# - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T10:10:41Zhttp://stackoverflow.com/feeds/question/780570http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/780570/round-off-decimal-values-in-c0Round Off decimal values in C#Girish19842009-04-23T06:56:34Z2009-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#7805772Answer by Paul Alexander for Round Off decimal values in C#Paul Alexander2009-04-23T06:58:09Z2009-04-23T06:58:09Z<p>Math.Round( value, 0 )</p>
http://stackoverflow.com/questions/780570/round-off-decimal-values-in-c/780579#7805797Answer by Jon Skeet for Round Off decimal values in C#Jon Skeet2009-04-23T06:58:28Z2009-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#7806040Answer by NinethSense for Round Off decimal values in C#NinethSense2009-04-23T07:06:05Z2009-04-23T07:10:09Z<pre><code>d = decimal.Round(d);
</code></pre>
http://stackoverflow.com/questions/780570/round-off-decimal-values-in-c/780813#7808130Answer by Amby for Round Off decimal values in C#Amby2009-04-23T08:39:57Z2009-04-23T08:39:57Z<p>Try this...</p>
<pre><code> var someValue=123123.234324243m;
var strValue=someValue.ToString("#");
</code></pre>