윈폼으로 만드는중인데


string result = "";


...


            result = button1.Text;


            try

            {

                label2.Text = Convert.ToInt32(result).ToString();

            } 

            catch(FormatException fe)

            {

                MessageBox.Show("fe error!");

            }


포맷 예외 뜨면서 안되네요..


컨버팅 제대로 된거 아닌가요?