Advertisement
cogier

Array length

Mar 25th, 2020
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 0.23 KB | None | 0 0
  1. 'https://rosettacode.org/wiki/Array_length
  2. Imports System
  3. Module Program
  4.     Sub Main(args As String())
  5.         Dim siList As Short() = {1, 2, 3, 4, 5, 6, 7, 8, 9, 0}
  6.  
  7.         Console.WriteLine(siList.Count)
  8.  
  9.     End Sub
  10. End Module
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement