Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
97 views

Why adding two large integers whose result greater than int.MaxValue doesn't throw overflow exception?

If we are using the following loop in a program, the loop never ends in C# 4.0 for (int i = 1; i <= int.MaxValue; i++) { } This is because adding 1 to int.MaxValue (2147483647) will not result ...
2
votes
1answer
41 views

Why can OverflowExceptions happen for decimal->byte conversions but not for uint->byte?

I'm wondering if anyone can explain an OverflowException I am seeing. Consider the following code: uint fred = 32768; byte wilma = (byte)fred; decimal bamBam = fred; ...
2
votes
5answers
96 views

recursive stack size?

class Program { static void Main(string[] args) { Test(0); } static void Test(int i) { if (i > 30000) { return; } Test(i + ...
2
votes
3answers
316 views

Decimal parse of exponential 0 value (0+E3)

Our middle tier sends us serialized objects and sometimes a 0, due to some math operations in java on the server, come through as 0E+3. When deserializing the object we get an XmlException --> ...
2
votes
6answers
1k views

Arithmetic operation resulted in an overflow. (Adding integers)

I can't understand this error: In this call to method SetVolume, Volume = 2055786000 and size = 93552000. Volume is an Integer property, and size is also Integer, as you can see. The class is a ...
2
votes
2answers
218 views

What is the safest way to subtract two System.Runtime.InteropServices.ComTypes.FILETIME objects

I wonder what is the safest way to subtract two System.Runtime.InteropServices.ComTypes.FILETIME objects? I used the following code but sometimes it gives me ArithmaticOverflow exception due to the ...
2
votes
4answers
1k views

VB.NET CInt(Long) behaving differently in 32- and 64-bit environments

this is my first message here. Today I had a problem converting a Long (Int64) to an Integer (Int32). The problem is that my code was always working in 32-bit environments, but when I try THE SAME ...
2
votes
2answers
3k views

Oracle number to C# decimal

I know there are several threads and posts regarding this issue in the internet and I've read them (not every article, I have to admit) but none of them did fully satisfy me. My situation: I'm using ...
2
votes
4answers
395 views

How can I stop OverflowException being thrown on integer division?

I am getting OverflowException's thrown at me when I don't want them (or so I think). I am performing some odd calculations where I expect the values to overflow, discarding overflowed bits. It seems ...
1
vote
2answers
105 views

Value was either too large or too small for an Int16 ,when copy to data table

Q: The following code: var dtInstTotal = dtExternal.AsEnumerable() .Union(dtEmployed.AsEnumerable()) .OrderBy(d => ...
1
vote
2answers
149 views

Why does this cause an ArithmeticException in C# when SQLPlus is all ok

I have a view connecting 4 tables CREATE VIEW BookCopyInfo AS SELECT bc.BookCopyID, b.BookTitle, m.FirstName || ' ' || m.LastName AS BorrowedBy, l.expectedReturnDate, (SYSDATE - ...
1
vote
1answer
141 views

C# - What could cause overflow checking here?

I am accustomed to C# not performing overflow checks, as the language spec states (§7.5.12): For non-constant expressions (expressions that are evaluated at run-time) that are not enclosed by any ...
0
votes
1answer
37 views

Using NaN value in MSChart gives Overflow Exception

I'm working in a real time ploting appication with MSChart...I need to set some y values to NaN but I'm getting an overflow exception. Here is the part of the code where it happen: if (j_ecg < ...
0
votes
1answer
290 views

Sending WM_KEYUP message to a window gives an OverflowException

I am trying to implement a program that sends the same messages to a window that would be sent if a certain key is continuously pressed. This is part of the code (entire Form1.cs code is here ) for ...
0
votes
3answers
144 views

Rationale behind OverflowException thrown with negative array size?

After writing code that can be boiled down to the following: var size=-1; var arr=new byte[size]; I was surprised that it threw an OverflowException. The docs for OverflowException state: The ...