Android Question Clear Array

Andre Pagliuso

Member
Licensed User
Longtime User
How to clear the contents of an array??

Dim vsArray(2) as string
vsArray(0) = "1"
vsArray(1) = "2"

vsArray = "" <---- ????????? This is my question, how to zero the values inside this array?
 

Star-Dust

Expert
Licensed User
Longtime User
B4X:
vsArray=array as string()

Or Re-Dim
 
Upvote 0
Cookies are required to use this site. You must accept them to continue using the site. Learn more…