在VB中,可以通过使用Array类的Length属性来确定数组元素的个数。以下是一个示例:
Dim numbers() As Integer = {1, 2, 3, 4, 5} Dim count As Integer = numbers.Length Console.WriteLine("数组元素个数:" & count)
运行上述代码将输出:
数组元素个数:5