본문 바로가기

C#

C# ToString() 메소드


ex)
public int instance = 10;
TextBox1.Text = instance.ToString();

정수형 instance 값을 문자열로 변환한다.