gpt4 book ai didi

c# - 如何检测var是否为字符串

转载 作者:行者123 更新时间:2023-11-30 13:08:48 24 4
gpt4 key购买 nike

我在使用 if 语句检测我的 numericupdown 对象是否为字符串时遇到了一些麻烦,因此我没有使用小数变量来调整它。我看到有一种命令,但我无法使用它。这是我正在查看的内容:

if(typeof sentNUD.Value == string)
{
//Do string arguments here
}
else
{
//do decimal arguments here
}

虽然 if 语句的语法是错误的,但我得到了一个错误。如何正确设置该 if 语句?我试着环顾四周,但我无法理解如何正确地做到这一点。谢谢。

最佳答案

您可以使用“is”运算符:

if(variable is string)
{

}

关于c# - 如何检测var是否为字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20709543/

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