gpt4 book ai didi

c# - 我如何制作一个代码来检查字符串是否不是数字

转载 作者:太空宇宙 更新时间:2023-11-03 17:17:24 26 4
gpt4 key购买 nike

问题说明了一切

我想做的是

if (textbox1.Text != int)
{
MessageBox.Show ("This is not a proper number.")
}

我使用一个按钮来启动命令。我是 C# 的新手,所以请原谅这么简单

最佳答案

这将为您获取号码并告诉您它是否无效。如果它无效,它也不会抛出异常。它只会返回 false。

int i;

if(!int.TryParse("Your_String_To_Try_And_Parse", out i)) {
MessageBox.Show("Not a number");
}

现在这样做的缺点是它会告诉您它是整数而不是小数等。因此 5.5 无效。

关于c# - 我如何制作一个代码来检查字符串是否不是数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17709611/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com