作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何在VB.NET中将Object
转换为Integer
?
当我做:
Dim intMyInteger as Integer = TryCast(MyObject, Integer)
最佳答案
TryCast
等效于C#的as
运算符。它是一个“安全强制转换”运算符,如果强制转换失败,则不会引发异常。而是返回Nothing
(在C#中为null
)。问题是,您不能将Nothing
(null
)(引用类型)分配给Integer
(值类型)。没有Integer
null
/ Nothing
这样的东西。
而是可以使用TypeOf
和Is
:
If TypeOf MyObject Is Integer Then
intMyInteger = DirectCast(MyObject, Integer)
Else
intMyInteger = 0
End If
MyObject
的运行时类型是否为
Integer
。有关更多详细信息,请参见
MSDN documentation on the TypeOf
operator。
Dim myInt As Integer = If(TypeOf myObj Is Integer, DirectCast(myObj,Integer), 0)
Nullable(Of Integer)
类型。
关于vb.net - 如何在VB.NET中从Object转换为Integer?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13151196/
我是一名优秀的程序员,十分优秀!