string str =string.Format("{0:#,###}",2345); // 2345 -> 2,345 예) private void button3_Click(object sender,EventArgs e) { int num; num = Convert.ToInt32(textBox1.Text); // textBox1에 입력된 내용을 int로 변환후 num에 할당 string str =string.Format("{0:#,###}", num) //num을 문자열 변환 & 콤마표시 후 str에 할당 MessageBox.Show(str); // 문자열 str을 메시지박스로 표시 } 결과) 위 내용을 참고로, 텍스트 박스에 실시간으로 입력되는 숫자에 콤마를 표시할 수 있다. 텍스트박스의 TextChanged ..