我已经定义了一个具有自己类型的变量
Dim point As DataPoint
Public Type DataPoint
list as Collection
name as String
number as Integer
End Type
Run Code Online (Sandbox Code Playgroud)
我想point一次删除变量的所有值.如果它是一个类,我会使用Set point = New DataPoint或设置Set point = Nothing,但如果它是一个类型我该怎么办?