CORONA-Int.TryParse(string s , out int result) 사용해보기


CORONA-Int.TryParse(string s , out int result) 사용해보기

using System; using System.Windows.Forms; namespace WindowsFormsApp2 { public partial class Calculator : Form { public Calculator() { InitializeComponent(); } private void HellowLabel_Click(object sender, EventArgs e) { HellowLabel.Text = "Hello c#"; HellowLabel.Cursor = Cursors.Hand; int num1 = 1; int num2 = 2; int sum = num1 + num2; HellowLabel.Text = sum.ToString(); } private void btnSum_Clic..


원문링크 : CORONA-Int.TryParse(string s , out int result) 사용해보기