Tagged Questions
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 ...
0
votes
0answers
27 views
Memory Leak AppDomian not unloading?
Hi am writting a program that does many thousands of loops. Inside the loop, as well as many other things, there is a method call to to econ.ADFTest() as shown below.
Class MyClass
{
double [] ...
0
votes
0answers
287 views
AppDomain Shadow copy and memory leaks
I'm using the following C# code at the start of my application (a Windows Service in a .NET 4.0 project) to allow Shadow Copy:
private static void Main()
{
var setup = new AppDomainSetup();
...
-2
votes
2answers
69 views
AppDomain.Unload memory leak
I have a similar issue in my AppDomain to what is being described in this post
http://social.msdn.microsoft.com/Forums/en-AU/clr/thread/20de15d6-3111-4c2e-a04b-feb341a67ebc
Can anybody elaborate on ...