Visual Basic .NET数组初始化

示例

Dim array() As Integer = {2, 0, 1, 6}                   ''Initialize an array of four Integers.

Dim strings() As String = {"this", "is", "an", "array"} ''Initialize an array of four Strings.

Dim floats() As Single = {56.2, 55.633, 1.2, 5.7743, 22.345}

              ''Initialize an array of five Singles, which are the same as floats in C#.

Dim miscellaneous() as Object = { New Object(), "Hello", New List(of String) }

              ''Initialize an array of three references to any reference type objects

              ''and point them to objects of three different types.

           

以上是 Visual Basic .NET数组初始化 的全部内容, 来源链接: utcz.com/z/321289.html

回到顶部