In the following code I'm getting an OutOfMemoryException because I'm launching these threads 1024 times and only some of them gives me an exception.Code:public static void Thread(object state) { byte[] bytes = new byte[64000000]; }
I can't reduce the size of the chunk, its a mandatory requisite that I have a chunk of 64MB.
What can I do to fix this?


Reply With Quote


Bookmarks