我想为文本文件绘制单词关联。部分问题似乎是单词的数量和处理时间,我试图加速使用lapply来替换嵌套循环。但是,我不确定lapply替换是否正确。那么denegram可能太密集而无法使用。问题是:1)如何加速嵌套的for循环,以及2)如何显示denegram。
static class MainEntryPoint
{
static void Main(string[] args)
{
AppDomain.CurrentDomain.UnhandledException += HandleUnhandledException;
using (var x = new Disposable())
{
throw new Exception("asdfsdf");
}
}
private static void HandleUnhandledException(Object sender, System.UnhandledExceptionEventArgs e)
{
Environment.Exit(0);
}
}
class Disposable : IDisposable
{
public void Dispose()
{
System.Diagnostics.Debug.Print("I am disposed");
}
}