Ich hab hier mal die VB Variante von http://dotnet-snippets.de/dns/ungenutzten-arbeitsspeicher-freiraeumen-SID821.aspx nach C# portiert.
[DllImport("kernel32.dll")]
public static extern int SetProcessWorkingSetSize(IntPtr process, int minimumWorkingSetSize,
int maximumWorkingSetSize);
/// <summary>
/// Flushes the memory
/// </summary>
public static void FlushMemory()
{
GC.Collect();
GC.WaitForPendingFinalizers();
if (Environment.OSVersion.Platform == PlatformID.Win32NT)
SetProcessWorkingSetSize(Process.GetCurrentProcess().Handle, -1, -1);
}
3 Kommentare zum Snippet