我创建了一个简单的测试程序来找出调用 Dispose 与不调用 DataContainer 对象之间的内存和速度差异。
这是我的测试程序:
static void Main(string[] args)
{
Stopwatch stopwatch = new Stopwatch();
stopwatch.Start();
for (int i = 0; i < 5000; i++)
{
// I change the following call with Method1 and run it again
var res = Method2();
int count = res.Count;
}
stopwatch.Stop();
Console.WriteLine(stopwatch.Elapsed);
Console.WriteLine("Mem: " + System.Diagnostics.Process.GetCurrentProcess().PrivateMemorySize64.ToString("N"));
Console.ReadKey();
}
private static IList Method1()
{
using (var db = new Model.SampleEntities())
{
var result = db.People.Where(p => p.Name.StartsWith("a")).Take(1);
return result.ToList();
}
}
private static IList Method2()
{
var db = new Model.SampleEntities();
var result = db.People.Where(p => p.Name.StartsWith("a")).Take(1);
return result.ToList();
}
两种方法的结果相同。我的 PC 上的结果是大约 27.22 秒和大约 37.7 MB 的私有内存大小。
现在为什么我应该为 DataContainers 调用 Dispose 而它没有区别?
提前致谢。