结构体 struct 是值类型,还是"引用类型

2025-05-10 16:47:39
推荐回答(1个)
回答1:

值类型。

所有 struct 类型都派生自 System.ValueType,是值类型,包括 int、long、double 等等。

所有 class 类型都派生自 System.Object,是引用类型,包括 string 等等。