How to clear the entire array?

前端 未结 8 869
不思量自难忘°
不思量自难忘° 2021-02-02 05:06

I have an array like this:

Dim aFirstArray() As Variant

How do I clear the entire array? What about a collection?

8条回答
  •  清酒与你
    2021-02-02 05:53

    [your Array name] = Empty
    

    Then the array will be without content and can be filled again.

提交回复
热议问题