Advertisement
Guest User

Untitled

a guest
May 20th, 2018
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Sub Main
  2.     Set arrayList = CreateObject( "System.Collections.ArrayList")
  3.     arrayList.Add "Hi World"
  4.     arrayList.Add "Hello World"
  5.     arrayList.Add "Hey World"
  6.     arrayList.Sort
  7.     arrayList.Remove "Hi World"
  8.     arrayList.RemoveAt "0"
  9. End Sub
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement