问题
设有如下的记录类型Type Student numberAs string name As String age As IntegerEnd T
设有如下的记录类型
Type Student
numberAs string
name As String
age As Integer
End Type
则正确引用该记录类型变量的代码是()。
A. Student.name="张红"
B. Dim s As Student
s.name="张红"
C. Dim s As Type Student
D. Dim s As Type
s.name="张红" s.Dame="张红"
请帮忙给出正确答案和分析,谢谢!