vb怎么获取自定义类型的名称

vb如何获取自定义类型的名称?
在标准模块中定义的类型:
Public Type test
  x as String
  y as String
End Type
如何编程获取该类型的名称test的啊?


------解决方案--------------------
dim x as test

dim s as string 
s=typename(x)