Tagged Questions
4
votes
5answers
191 views
How to fix an application that has a problem with decimal separator
This post is about C# and .Net, but some info is valuable for other techonolgies.
Since I can remember, I've been having problems with apps or games that crash because of a different style of parsing ...
3
votes
7answers
220 views
Split double into two int, one int before decimal point and one after
I need to split an double value, into two int value, one before the decimal point and one after. The int after the decimal point should have two digits.
Example:
10.50 = 10 and 50
10.45 = 10 ...
2
votes
2answers
2k views
Leave only two decimal places after the dot
public void LoadAveragePingTime()
{
try
{
PingReply pingReply = pingClass.Send("logon.chronic-domination.com");
double AveragePing = ...
1
vote
2answers
111 views
LINQ query, ignoring results with certain decimal points
I need to perform a LINQ query on a large database in C#. One of the columns I need to use in the query is a double. I need to omit results that have more than 4 decimal places in this column. The ...
1
vote
2answers
378 views
C# unlimited significant decimal digits (arbitrary precision) without java [closed]
Possible Duplicate:
what is the equivalent for java class : BigDecimal in c#
I know in this post: Arbitrary precision decimals in C#? says to use java.math.BigDecimal, but I don't have J# ...
1
vote
0answers
524 views
Using AJAX Control Toolkits NumericUpDown Control with Comma as Decimal Separator
We are trying to use the NumericUpDown Control from the AJAX Control Toolkit, but can find no way to make it use a comma as a decimal separator instead of a point. Other controls such as the Calendar ...
0
votes
5answers
587 views
How to format a decimal
Using C#, I want to format a decimal to only display two decimal places and then I will take that decimal and subtract it to another decimal. I would like to be able to do this without having to turn ...