1

我发现如果我在 OSX 上使用 MONO 制作这个简单的项目,单声道进程的内存会不断增长,是否有一些提示可以避免这种情况?

using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
using System.Xml;
using System.Collections.ObjectModel;
using System.Threading;

namespace testXML
{
    class MainClass
    {
        public static void Main (string[] args)
        {
            while (true) {
                XmlDocument oo = new XmlDocument (); 
            }
        }
    }
}
4

0 回答 0