Tagged Questions

6
votes
3answers
1k views

.NET Remoting Singleton memory leak, TCP, Marshal by Reference

I am using the simplest example of remoting that I could find, sharing an object between a windows service and a windows forms program (client), running on the same machine. The service instantiates ...
6
votes
4answers
2k views

How can I prevent CompileAssemblyFromSource from leaking memory?

I have some C# code which is using CSharpCodeProvider.CompileAssemblyFromSource to create an assembly in memory. After the assembly has been garbage collected, my application uses more memory than it ...
1
vote
2answers
215 views

Incorrect interop signature causing memory leak

A 3rd party com module being used from c# via interop generated interface is leaking memory The 3rd party c++ method signature is: somemethod(....., long** param3, long** param4) The generated ...
0
votes
1answer
394 views

Read/Write on protected memory exception thrown (.net)

I am being told by an exception that's being thrown in the last line, that I'm trying to read/write on protected memory. What am I doing wrong here? Thanks int count = ...