Skip to content

Instantly share code, notes, and snippets.

@dck-jp
Last active August 29, 2015 13:56
Show Gist options
  • Save dck-jp/9044981 to your computer and use it in GitHub Desktop.
Save dck-jp/9044981 to your computer and use it in GitHub Desktop.
ArrayEx.cls sample code
Option Explicit
Sub ArrayExTest()
Dim list As New ArrayEx
list.AddVal (11)
list.AddVal (21)
list.AddVal (31)
Dim arr: arr = list.ToArray
Debug.Print (arr(2)) '"31" displays at ImmediateWindow
End Sub
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment