作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
作为一个整体,我对 OOP 很陌生,更不用说 VB 了。我试图通过组合条件将以下 4 行变成 2 行:
ElseIf GA_URI.StartsWith("/home/index") Then
gaCategory = cat_splash
ElseIf GA_URI = "/games" Then
gaCategory = cat_splash
我试过这个:
ElseIf GA_URI.StartsWith("/home/index") And GA_URI = "/games" Then
gaCategory = cat_splash
但是不工作。非常感谢任何帮助
最佳答案
我建议 OrElse所以你可以更有效地短路(不必评估两个表达式):
ElseIf GA_URI.StartsWith("/home/index") OrElse GA_URI = "/games" Then
gaCategory = cat_splash
Q: Would this work for more than 2 expressions? as I have cases where I may have 3 or more
当然:
ElseIf GA_URI.StartsWith("/home/index") OrElse
(GA_URI = "/games" OrElse GA_URI = "/foo")
Then
gaCategory = cat_splash
...
你可以继续(括号表达式)但在某个时候Select...Case
将是要走的路。
关于asp.net - 如何组合这些 If 语句条件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16564444/
我是一名优秀的程序员,十分优秀!