up vote 2 down vote favorite
share [g+] share [fb]

i have this:

    Dim split As String() = temp_string.Split(",")

    ''#feed all info into global variables
    patient_id = split(0)
    doc_name = split(1)
    lot__no = split(2)
    patient_name = split(3)

how do i clear all the contents of split() ?

link|improve this question

feedback

4 Answers

up vote 2 down vote accepted
Array.Clear(split, 0, split.Length)
link|improve this answer
feedback
ReDim split(-1)
link|improve this answer
why is your method better than the two below – I__ Oct 28 '09 at 18:13
The different in the three methods: redim split(-1) This leaves the array as a string array with zero elements. Array.Clear(split, 0, split.Length) This leaves the array with all it's elements assigned a value of nothing. split = nothing This leaves split assigned a value of nothing. Which is better? It depends, but sometimes it makes a difference. For example, if you later use ubound to find the upper bound of split, you will get 0, 3, or an error for these three cases. – xpda Oct 28 '09 at 18:23
feedback

No need to do anything. The garbage collector will do its jobs clearing the variable. Explicitly set every variable to nothing will slow down your application.

link|improve this answer
This is the only correct answer provided so far. – Cody Gray Apr 14 '11 at 5:58
feedback

You can always set it to Nothing which will clear the reference. Then the garbage collector will take care of the rest when it finds that to be a good idea.

split = Nothing

However, if this is a local variable of a method you would typically not need to worry about this, the array will be available for garbage collection as soon as it goes out of scope.

link|improve this answer
why is your method better than the one below? you are just saying split=nothing? – I__ Oct 28 '09 at 18:09
I would assume that after Array.Clear, split will still hold a reference to the (now cleared) array. In my sample it will not reference anything. I would say that in most normal cases the difference will not be noticable (I assume that split is a local variable in a method that goes out of scope when the method is done). – Fredrik Mörk Oct 28 '09 at 18:11
1  
+1 for "not need to worry about this" There is no good reason to set it to Nothing unless the array itself is a global variable, and that's unlikely. – Joel Coehoorn Oct 28 '09 at 18:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.