Tagged Questions
2
votes
3answers
83 views
Why don't integers get lifted to doubles when treated as objects and comparing?
I ran across this interesting situation today:
var a = new HashSet<Object> { 1.0, 2.0, 3.0 };
a.Contains(1); //False
a.Contains(1.0); //True
Of course, this was just a generic version ...
-4
votes
3answers
62 views
How do I convert a TimeSpan value to a double ? c#
How do I convert a TimeSpan value to a double in c# ?
I mean I have this -08:15:00 and I want a double -08.15
1
vote
3answers
155 views
Float Precision Format to suppress trailing zeros
I am using the format string F2 to convert a double value. I am getting the formatted value as 9999.00, if the double value is 9999
Which format string should I use to avoid trailing zeroes in ...
1
vote
1answer
87 views
C# which numeric type for a math application?
I write an interval analysis C# application so I have to handle very large or small numbers. I think double is a very good data type (because the floating-point arithmetic). User can define any ...
1
vote
2answers
42 views
What is the minimal step in double data type? (.NET)
My question is a bit theoretical but actually I need it in practice.
Let's assume that we have two double variables X and Y. Y is certain next double number of X (as you already know we can't keep ...
5
votes
1answer
294 views
Double ToString - No Scientific Notation [duplicate]
I just came across the wonderful "feature" that .NET will by default do Double.ToString() using scientific notation if there are enough decimal places.
.005.ToString() // ".005"
.00005.ToString() // ...
1
vote
2answers
81 views
How i can convert string values in formats “1.123” and “1,123” to double by single double.TryParse?
I have an incoming source of string values representing double values with "." and "," delimiter and my program would run on PCs with different settings of delimiter ("," or ",")
Which way can I ...
30
votes
4answers
764 views
Comparing Double.NaN with itself
I am stuck trying to find out why these two operations return different values:
Double.NaN == Double.NaN returns false
Double.NaN.Equals(Double.NaN) returns true
I have the answer to the first ...
1
vote
0answers
43 views
Why NegativeInfinity and PositiveInfinity are Equal in Struct? [duplicate]
Possible Duplicate:
Can anyone explain this strange behavior with signed floats in C#?
When we look at the metadata of the System.Double class;
public const double NegativeInfinity = -1.0 ...
0
votes
2answers
94 views
Why I can't call Math.Round(double,int) overload
In .NET Library there is Function like
System.Math.Round(double, int)
But why I need to cast double value to float to make it work..??
Look on the following screenshot:
-8
votes
3answers
216 views
How a Double.ToString() displays more chars that Double's precision? [closed]
?(1.0-0.9-0.1)
-0.000000000000000027755575615628914
?((double)1.0-(double)0.9-(double)0.1)
-0.000000000000000027755575615628914
?((double)1.0-(double)0.9-(double)0.1).GetType()
{Name = "Double" ...
0
votes
1answer
186 views
Double properties will not be serialized to XML
We serialize an object to xml:
public class Test: INotifyPropertyChanged
{
public virtual string Name {get; set;}
public virtual double TestScore {get; set;}
}
Using ...
-1
votes
5answers
165 views
Why double a = 8/3 return 2?
Code :
double a = 8/ 3;
Response.Write(a);
it returns 2 why? I need at least 2.6, or 2.66. How?
1
vote
1answer
100 views
.NET type to store any possible number, or how to compare strings as numbers
We are developing an autofilter add-in for our .NET DataGrid control which works similar to the same MS Excel functionality. It allows entering custom filter criteria. We need to check whether a grid ...
4
votes
1answer
187 views
C# Decimal.GetHashCode() and Double.GetHashCode() equal
Why is it that
17m.GetHashCode() == 17d.GetHashCode()
(m=decimal, d=double)
Additionally, as expected
17f.GetHashCode() != 17d.GetHashCode()
(f=float)
This appears to be true for both net3.5 and ...
3
votes
4answers
267 views
Which values cannot be represented correctly by a double
The Double data type cannot correctly represent some base 10 values. This is because of how floating point numbers represent real numbers. What this means is that when representing monetary values, ...
4
votes
3answers
153 views
Math.Round() yields unexpected result for double
I stumbled across a method in my code where a rounded value is calculated wrong in my code.
I am aware about the problem with comparing double values generated unexpected results.
Example
double ...
2
votes
8answers
254 views
Reading a double value from a string
I've tried to solve this for hours and absolutely don't understand what the compiler is doing here. I have strings that basically look like this:
"KL10124 Traitor #2 - +XX-+0.25 - More Stuff"
and ...
4
votes
5answers
506 views
Fast Floor and Ceiling alternatives for positive System.Double values
double d = 0; // random decimal value with it's integral part within the range of Int32 and always positive.
int floored = (int) Math.Floor(d); // Less than or equal to.
int ceiled = (int) ...
1
vote
2answers
279 views
Does Double.Parse(“NaN”) parse correctly?
Does the C# Double parse "NaN" correctly, ie. does Double.Parse("NaN").ToString() == "NaN"?
1
vote
3answers
164 views
What is the best way to parse double from unknown culture in .NET C#?
I'm using XML files to store user data. Files may be saved and loaded from different localisation. Depending on the culture, a double number can be saved as "1.2345" or as "1,2345". The difference is ...
4
votes
5answers
330 views
Why double.Parse(“0.05”) returns 5.0?
I am reading a value from my App.config; which is:
<add key="someValue" value="0.05"/>
And I try to convert it to double by doing:
var d = ...
0
votes
3answers
57 views
Garbage collection in .net
A Line class have reference to two objects of Point class (as start_Point and end_Point).
Consider the scenario where :
Line l1 and l2 share some point (say l1.end_Point = l2.start_Point).
Now if the ...
0
votes
1answer
159 views
IEqualityComparer<double> with a tolerance; how to implement GetHashCode?
I'm implementing a reusable DoubleEqualityComparer (with a custom tolerance: the "epsilon" constructor parameter) to ease the usage of LINQ with sequences of double. For example:
bool myDoubleFound = ...
0
votes
2answers
195 views
Convert a string to double
I need help converting a string to double with 7 decimals. I have a string "00000827700000" and need it converted to 82.77
Tried using String.Format() with {0:N7} without success.
1
vote
1answer
294 views
What's the vb.NET method corresponding to the old CInt() VB method?
I don't want use old VB methods in my code and I m confused about what's the newest vb.NET method corresponding to the old CInt() VB method
for example,
Dim n1 as Double : n1 = CInt(2.1111111) 'get ...
2
votes
3answers
612 views
Binding errors While Binding null values to Width and Height of the wpf control
Our project needs that we bind many properties of the control such as Height, Width, MinHeight, Row, Column, rowspan... etc. While doing so we observed binding errors to when these values are null ...
2
votes
2answers
118 views
Inspecting double.ToString()
As a follow up to a question I had about optimising the conversion of double to string for memory (see c# double to character array or alternative) I wanted to see how double.ToString() is implemented ...
7
votes
3answers
252 views
C# Casting to a decimal
What, if any, is the difference between?
decimal d = (decimal) myDouble;
decimal d = new decimal(myDouble);
decimal d = Convert.ToDecimal(myDouble);
1
vote
2answers
271 views
Is there a stable sorting algorithm for .Net Doubles faster than O(n log n)?
I need a stable sorting algorithm for .Net Doubles that is faster than O(n log n).
I am thinking of Radix sort. However if I understand correctly, it's performance is O(n k) and since I'm sorting ...
0
votes
1answer
174 views
Estimate error in floating point calculations
One important property of IEEE floating-point math that rounding causes "errors" in calculations due to the limited number of bits and the base-2 format.
E.g. in C#:
(Math.PI * 1e20 / 1e20) == ...
3
votes
4answers
130 views
.NET implementation: Double conversion in Math.Min(float, float)
Why does .Net implement the Math.Min(float, float) function like so:
public static float Min(float val1, float val2)
{
if ((double) val1 < (double) val2 || float.IsNaN(val1))
return val1;
...
0
votes
2answers
179 views
Number changes when converting Double to Numerics.BigInteger
using System.Numerics;
double doubleNumber = Math.Pow(1000, 99); // = 1.0E+297
BigInteger bigBase = (BigInteger)bigNumber; // = ...
4
votes
2answers
454 views
Calculate the unit in the last place (ULP) for doubles
Does .NET have a built-in method to calculate the ULP of a given double or float?
If not, what is the most efficient way to do so?
2
votes
1answer
653 views
Double.TryParse() ignores NumberFormatInfo.NumberGroupSizes?
I'd like to know if I'm missing something or not... I'm running under the standard Great British culture.
Double result = 0;
if (Double.TryParse("1,2,3", NumberStyles.Any, CultureInfo.CurrentCulture, ...
1
vote
1answer
97 views
.NET: Is it possible to change the format used by double.ToString()?
I have some third party code, that invokes double.ToString(). My problem, is that the default double.ToString() implementation replaces the decimal dot with a comma, like so:
49.99.ToString() == ...
2
votes
2answers
267 views
Double ToString problems
I have this:
textBoxNano.Text = stats.Nano.ToString();
The problem is when the stats.Nano (which is a double) gets with more digits, the textBoxNano displays it:
1E-06
What I want is to ...
4
votes
1answer
943 views
IFormatProvider scientific conversion from double to string - number of digits
I have a problem with the conversion from double to string.
I want to convert:
double value: 0.0772486324655191
string value: 0.0772486324655191
and if the length is bigger than 16 digits ...
0
votes
5answers
667 views
Double.Parse losing precision when converts 8 decimal places string
i am trying to convert "12345678.12345678" to double, but Double.Parse changes it 12345678.123457. Same is the case when i use Decimal instead of double
decimal check = ...
19
votes
5answers
954 views
Is it better to cast double as decimal or construct “new” decimal from double?
When going from a double to a decimal, presuming my double can be represented as a decimal...
Is it more appropriate to cast a double as a decimal:
(Explicit Numeric Conversions Table) (Note that ...
2
votes
3answers
268 views
Doubles, Ints, Math.Round in C#
I have to convert a double value x into two integers as specified by the following...
"x field consists of two signed 32 bit integers: x_i which represents the integral part and x_f which represents ...
2
votes
2answers
56 views
Is there a built in .net string/double object for combo boxes?
When adding items to a ComboBox I know that I could simply define some object and modify .ToString()
Is there a built-in object that already does this on a double/string combination?
That is:
I ...
8
votes
6answers
4k views
Why c# decimals can't be initialized without the M suffix?
public class MyClass
{
public const Decimal CONSTANT = 0.50; // ERROR CS0664
}
produces this error:
error CS0664: Literal of type double cannot be implicitly converted to
type ...
0
votes
3answers
856 views
Trying to add the currency symbol to value using system.globalization
i am trying to add the currency symbol to totalvalue by using following code
using System.Globalization;
double value;
double totalValue = 0.0;
foreach (DataRow row in reportData.Rows)
...
2
votes
2answers
251 views
What's the best way to represent System.Double as a sortable string?
In data formats where all underlying types are strings, numeric types must be converted to a standardized string format which can be compared alphabetically. For example, a short for the value 27 ...
4
votes
2answers
286 views
double.Parse fails on NaN
In my 3.5 SP1 windows form application the following lines both fail with a format exception.
Double.Parse(double.NaN.ToString(CultureInfo.InvariantCulture),CultureInfo.InvariantCulture);
...
-1
votes
2answers
152 views
How to fix error in money representation by Double?
I'm using the type double to represent monetary values.
As you know some number are not represented correctly, like 19,7949999999.... Is approximated to 19,80.
How can I resolve this?
I tried to use ...
0
votes
3answers
353 views
string to double parsing error
i have the following code:
static void Main(string[] args)
{
Thread.CurrentThread.CurrentCulture = new CultureInfo("mk-MK");
string s2 = "4.434,00";
double d;
...
0
votes
2answers
66 views
.NET Rounding Help
I have 10 fractional numbers (double type) that add up to 1. My client wants to show one decimal place in our grid and I've tried using the decimal data type, Math.Round (Away and Even), but I just ...
15
votes
1answer
951 views
A Double divided by zero is returning a Divide by Zero error
I am experiencing an unexpected behaviour and was hoping someone could help with some guidance as to what areas to focus an investigation on.
I have two methods, one essentially performs a divide by ...