Vba createobject system collections arraylist

vba system.collections.arraylist 2d code example

Example: excel vba arraylist

'VBA does not include a native ArrayList memory structure. 'However, VBA can create and use a .NET ArrayList: Set ArrayList = CreateObject["System.Collections.ArrayList"] ArrayList.Add "World" ArrayList.Add "Hello " ArrayList.Sort MsgBox ArrayList[0] & ArrayList[1] '

Chủ Đề