VB.NET中的感叹号(!)

前端之家收集整理的这篇文章主要介绍了VB.NET中的感叹号(!)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
以下代码是设计器生成的:
Me.lblXRay.Font = New System.Drawing.Font("Arial",8.0!,System.Drawing.FontStyle.Regular,System.Drawing.GraphicsUnit.Point,CType(0,Byte))

什么是8.0!意思?

这可以追溯到Microsoft Basic的早期版本.这些类型字符允许您设置标识符的类型和文字
Dim singleVar! = 1.2!
    Dim doubleVar# = 1.2#
    Dim decimalVar@ = 1.2@
    Dim integerVar% = 12%
    Dim longVar& = 12&
    Dim stringVar$= "12"

    Function ReturnsString$(ByVal takesLong&)
原文链接:https://www.f2er.com/vb/255569.html

猜你在找的VB相关文章