Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: 在 C# 中监控垃圾收集器
我想知道垃圾收集在我的 C# 应用程序中运行的频率,以便我可以记录时间戳以供以后分析。
在垃圾收集之前或之后是否可能会触发一些事件或类似的东西,以便我知道垃圾收集的确切时间?
查看性能监视器(perfmon)和内存性能计数器
它们之间有什么区别,第一个真的跑得更快吗?
for (x in myArray) { document.write(myArray[x] + "<br />") } for (i=0; i<myArray.length; i++) { document.write(myArray[i] +