如果在 VB .NET 中则一行
是否可以在 VB .NET 中执行一行 if 语句? 如果是这样,怎么办?
Is it possible to do one line if statement in VB .NET? If so, how?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
是否可以在 VB .NET 中执行一行 if 语句? 如果是这样,怎么办?
Is it possible to do one line if statement in VB .NET? If so, how?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(11)
使用 IF()。
它是一个短路三元运算符。
另请参见:
IIF 变为 If,并且是真正的三元运算符
是否有条件三元
VB.NET 中的运算符?
Orcas 引入了 IF 运算符 - a
新的和改进的 IIF
VB.NET 中的三元运算符
Use IF().
It is a short-circuiting ternary operator.
SEE ALSO:
IIF becomes If, and a true ternary operator
Is there a conditional ternary
operator in VB.NET?
Orcas introduces the IF operator - a
new and improved IIF
The Ternary Operator in VB.NET
其实很简单..
It's actually pretty simple..
单行
语法:
示例:
多个 ElseIf's
语法:
OR
多个操作
语法:
Single line
Syntax:
Example:
Multiple ElseIf's
Syntax:
OR
Multiple operations
Syntax:
冒着让最纯粹的 C# 程序员感到畏缩的风险,您可以在 VB 中的一行 if 语句中使用多个语句和 else 。 在此示例中,y 最终为 3,而不是 7。
At the risk of causing some cringing by purests and c# programmers, you can use multiple statements and else in a one-line if statement in VB. In this example, y ends up 3 and not 7.
或者
Or
只需添加
Then
:或:
Just add
Then
:or:
一行“If 语句”
比你想象的要容易,注意到还没有人把我得到的东西放进去,所以我会投入 2 美分。
在我的测试中,您不需要
延续? 分号
,可以不加,也可以不加End If
。<代码>= 条件。
单一条件
多个条件
无限? 条件
-不太确定如何格式化它以使其更具可读性,因此如果有人可以提供编辑,请这样做-
One Line 'If Statement'
Easier than you think, noticed no-one has put what I've got yet, so I'll throw in my 2-cents.
In my testing you don't need the
continuation? semi-colon
, you can do without, also you can do it without theEnd If
.<C#> = Condition.
<R#> = True Return.
<E> = Else Return.
Single Condition
Multiple Conditions
Infinite? Conditions
-Not really sure how to format this to make it more readable, so if someone could offer a edit, please do-
您也可以使用 IIf 函数:
You can use the IIf function too:
在 VB.NET 代码中使用起来很简单
基本语法
IIF(表达式为布尔值,真部分为对象,假部分为对象)作为对象
Its simple to use in VB.NET code
Basic Syntax
IIF(Expression as Boolean,True Part as Object,False Part as Object)As Object
更长的版本看起来像这样:
It will look like this in longer version: