So I'm pretty sure this is just me not knowing how to setup a list properly but when I create an array of strings for example:
Code: Select all
strList = {"String1","String2","String3"}
Code: Select all
--Either this
strNum = strList.Count
--Or this
strNum = strList.getCount()
My question is: Am I setting up my list incorrectly? If so, what is the correct way to allow use of the Count and getCount() functionality?