Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何创建一个包含 400 个类型元素的数组myClass并将不同的参数传递给每个元素?我应该定义什么类型的数组,我应该在哪里做这个?
myClass
C# 中的数组基础知识:
MyType[] arrayOfMyType = new MyType[400];
arrayOfMyType将为MyType. 您将需要对其进行迭代并为每个“插槽”分配一个对象,因为这些值将默认为您的类型的默认值(null对于引用类型)。
arrayOfMyType
MyType
null