C#整数字符串 [英] C# String To Integer

查看:63
本文介绍了C#整数字符串的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何将标签文本转换为数字,该文本只会是数字,这是我的代码.

How do i convert a labels text into a number,, this text will only be numbers, this is my code.

private void ShortCut_Load(object sender, EventArgs e)
     {
         string variable = form2size.Text;
         int value;
         int.TryParse(variable, out value);

         this.Size = new Size(this.Size.Width + value, 130);
     }

推荐答案

是的,它看起来正确.那是什么问题呢?
Int32.TryParse [
Yes it look correct. And what is the problem then ?
Int32.TryParse[^] will return true when convert successed


使用异常处理处理错误....

Use Exception Handling to handle the error....

private void ShortCut_Load(object sender, EventArgs e)
{
         int value = 0;
         try
         {
                  value = Convert.ToInt32(form2size.Text);
         }
         catch
         {}
         this.Size = new Size(this.Size.Width + value, 130);
}


String Converted= int.Parse(label1.Text);


将为您提供帮助.


Will help you.


这篇关于C#整数字符串的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆