Questions tagged [overflowexception]

The exception that is thrown when an arithmetic, casting, or conversion operation in a checked context results in an overflow.

78 questions
-2
votes
3 answers

The value was either too small or too large for an unsigned byte C#

I have 2 methods, shown below, and i can't get it to work. I am trying to open a .png file from a OpenFileDialog and display it on a ImageBox: public static Bitmap ToBitmap(this string input) { List splitBytes = new List(); …
Techcraft7
  • 129
  • 2
  • 12
-2
votes
4 answers

SqlDateTime overflow exception (yyyy-mm-dd to sqldatetime)

I'm extracting a date-formatted string (yyyy-MM-dd) and then converting it to a DateTime and inserting it in the database using a storedprocedure. But I keep getting System.Data.SqlTypes.SqlTypeException: SqlDateTime overflow. Must be between…
user1021726
  • 638
  • 10
  • 23
-4
votes
2 answers

System.OverflowException when casting a System.IntPtr to a uint

I tried to save the MaximumApplicationAddress from SystemInfo into an uint, but I get a System Overflow Exception: System.OverflowException: The arithmetic operation caused an overflow I tried a lot and also googled a lot, but nothing helps. If I…
1 2 3 4 5
6