Tagged Questions
7
votes
2answers
2k views
Memorystream and Large Object Heap
I have to transfer large files between computers on via unreliable connections using WCF.
Because I want to be able to resume the file and I don't want to be limited in my filesize by WCF, I am ...
2
votes
5answers
116 views
Large string array causing out of memory exception (C#)
I have written a c# win forms application that allows the user to open a log (text) file and view the log lines in a data grid. The application formats that log data so that the user can filter, ...
2
votes
1answer
233 views
Simple C# Array throwing OutOfMemory exception
I have a fairly large, fairly simple, array that's tracking 750,000 entries. In 64-bit .NET it works fine; however on the 32-bit client it's failing with an OutOfMemory exception. I know I'm not ...
1
vote
1answer
128 views
C# System.OutOfMemoryException was unhandled
i use foreach to read all the image from a folder
string[] filePaths = Directory.GetFiles(Workspace.InputFolder, "*.*");
foreach (string imageFile in filePaths)
{
...
0
votes
0answers
132 views
Out of memory when using BitmapSource
I'm changing source of a WPF image on run time with a frequency of 30ms ( 30 fps ). I'm getting an OutOfMemory.
In the following code, iImage is a private object displayed and owned by the wpf ...
0
votes
6answers
234 views
Why does running out of memory depend on intermediate calls to GC.GetTotalMemory?
A memory intensive program that I wrote ran out of memory: threw an OutOfMemory exception. During attempts to reduce memory usage, I started calling GC.GetTotalMemory(true) (to write the total memory ...