I have written an app that reads incoming chat(somewhat like an instant messenger), formats it and inserts it into a richtextbox. If you leave the program running long enough you will get an out of memory error. After looking at my code i think this is because i am never trimming the richtextbox. The problem that i'm running into is i don't want to call clear() because i don't want the visible text to disappear. I was thinking maybe i should keep a List with a max size of somthing like 200 lines. This List would keep the most recent chat. If the chat log grows to big, call clear and reinsert the last 200 lines. However, before i implement this thought i would ask if anyone knows of a better solution. Any thoughts?
相关问题
- Sorting 3 numbers without branching [closed]
- Graphics.DrawImage() - Throws out of memory except
- Why am I getting UnauthorizedAccessException on th
- 求获取指定qq 资料的方法
- How to know full paths to DLL's from .csproj f
While I agree with the accepted answer, I wanted to provide a code example to show some clarification:
Make sure you call Trim() after you remove the text otherwise the first line of text becomes blank space which causes this to not work.
I would probably do the following:
RichTextBox.TextChanged
eventRichTextBox.Lines.Length
)Good luck!