Tagged Questions
The numeric-conversion tag has no wiki summary.
0
votes
7answers
68 views
Casting and Convert.ToInt32() behave different in C#?
Here a simple C# piece of code:
Convert.ToInt32(TimeSpan.FromMinutes(5).TotalMilliseconds);
//which brings me 300000
(int)TimeSpan.FromMinutes(5).Milliseconds;
//which brings me 0
Why would ...
0
votes
2answers
232 views
C++ how to set a fixed decimal precision for a float
I have an API call which returns a double. The double's decimal length can variate from many decimal places to a few (it all comes down to the state of an actuator). This double represents the current ...
0
votes
1answer
225 views
Can one assign 4 little-endian-ordered bytes of an unsigned integer to a Java primitive using just bitwise operators?
I want to read 4 bytes which are a little-endian encoding of an unsigned 32-bit integer, and assign the value to a Java int
(Yes, in reality I will use a 'long', but in this case I 'know' that the ...
0
votes
3answers
4k views
SQL Server CONVERT(NUMERIC(18,0), '') fails but CONVERT(INT, '') succeeds?
PRINT CONVERT(NUMERIC(18,0), '')
produces Error converting data type varchar to numeric.
However,
PRINT CONVERT(INT, '')
produces 0 without error...
Question: Is there some SQL Server ...
0
votes
1answer
760 views
Silverlight XAML Binding — Decimal to Double
I've got some Columns in a DataGridView that have their Binding property set to something like the following:
Binding="{Binding NetPrice}"
The problem is that this NetPrice field is a Decimal type ...