这些刷新记忆功能有什么区别?

时间:2013-10-24 11:29:28

标签: c# memory-management

这些闪存功能有什么区别?
哪个更好(工作安全,没有问题)? 非常感谢。

    public static void FlushMemoryFirst()
    {
        System.Diagnostics.Process prs = System.Diagnostics.Process.GetCurrentProcess();
        try { prs.MinWorkingSet = (IntPtr)(300000); }
        catch { }
    }
    public static void FlushMemorySecond()
    {
        System.Diagnostics.Process prs = System.Diagnostics.Process.GetCurrentProcess();
        try { prs.MaxWorkingSet = (IntPtr)((int)(prs.MaxWorkingSet + 1)); }
        catch { }
    }

0 个答案:

没有答案