콘솔창에 메세지 출력. DEBUG_puts
C# / 2020. 8. 15. 23:39
private void DEBUG_puts(string s)//20200525 { System.Console.WriteLine(s); //GUI에도 출력하려면 if (textBox.Text.Length > 1024) { textBox.Text = textBox.Text.Substring(textBox.Text.IndexOf("\r\n") + 2); } textBox.Text += s+"\r\n"; textBox.SelectionStart = textBox.Text.Length; textBox.ScrollToCaret(); }
'C#' 카테고리의 다른 글
static이 아닌 필드, 메서드 또는 속성 'Control.InvokeRequired'에 개체 참조가 필요합니다. (0) | 2020.10.10 |
---|---|
Visual Studio 탭문자가 공백문자로 자동변경되는 문제 (0) | 2020.09.28 |
F1~10 펑션키 처리 (0) | 2020.08.15 |
Form 닫을때, 숨기기 (0) | 2020.07.18 |
다이얼로그창 DoModal, ShowDialog (0) | 2020.07.18 |