memory exception
-
I am working on an existing c# code which reads .csv files. Some of these files are about 120 MB in size. When the program is going through these big files it produces the following error. Message: "Exception of type 'System.OutOfMemoryException' was thrown." I have been asked to solve this issue in the code. Any thoughts please? Thanks
-
I am working on an existing c# code which reads .csv files. Some of these files are about 120 MB in size. When the program is going through these big files it produces the following error. Message: "Exception of type 'System.OutOfMemoryException' was thrown." I have been asked to solve this issue in the code. Any thoughts please? Thanks
-
I am working on an existing c# code which reads .csv files. Some of these files are about 120 MB in size. When the program is going through these big files it produces the following error. Message: "Exception of type 'System.OutOfMemoryException' was thrown." I have been asked to solve this issue in the code. Any thoughts please? Thanks
Some troubleshooting tips: http://msdn2.microsoft.com/en-us/library/9w766t6y.aspx[^]
Vasudevan Deepak Kumar Personal Homepage Tech Gossips
-
I am working on an existing c# code which reads .csv files. Some of these files are about 120 MB in size. When the program is going through these big files it produces the following error. Message: "Exception of type 'System.OutOfMemoryException' was thrown." I have been asked to solve this issue in the code. Any thoughts please? Thanks
To me this happend when I created a non terminating recursion. Maybe you are hanging in some loop? Forgot to increase the index while creating new objects?
Rudolf Heijink