下列选项中,不属于值类型的是( )
A: struct
B: Int32
C: Int
D: string
A: struct
B: Int32
C: Int
D: string
举一反三
- 下列选项中,不属于值类型的是( ) A: struct B: Int32 C: Int D: string
- 下列选项中,()是引用类型。 A: enum类型 B: struct类型 C: string类型 D: int类型
- 下列选项中,()不属于C#数据类型中的值类型 A: int B: bool C: string D: char
- 在C#中,下列选项中哪一个是引用类型:() A: enum类型 B: struct类型 C: string类型 D: int类型
- 下列选项中不能够定义一个结构体类型变量stu的是 。 A: struct student { int num; int age; } stu; B: struct student { int num; int age; }; student stu; C: struct {int num; int age; } stu; D: struct student {int num; int age; }; struct student stu;