RichTextBox
フォント、色の変更、画像のRtf形式への変換など、いくつかの方法でインスタンスを使用しています。
public static string ColorText(string text)
{
System.Windows.Forms.RichTextBox rtb = new System.Windows.Forms.RichTextBox();
rtb.Text = conversation;
// find predefined keywords in text, select them and color them
return rtb.Rtf;
}
しばらくすると、OutOfMemory
例外が発生します。電話する必要がありますrtb.Dispose();
か?またはGC.Collect
または使用するusing
または正しい方法は何ですか?