有没有办法获取对 C# 数组元素的引用?
Is there a way to get a reference to a C# Array element?
我想知道是否有办法在 C# 中获取对数组元素的引用。
类似这样但没有指针:
SomeClass *arr[5];
...
SomeClass** p = &arr[2];
到目前为止我得到了这个:
SomeClass arr[] = new SomeClass[5];
// Put something in the array
SomeClass p = arr[2]; // This will give me the initial object, not the array ref
p = new SomeClass(); // I want the array to now use this new object
这不就是你想要的吗?
var arr = new SomeClass[5];
ref SomeClass p = ref arr[2];
p = new SomeClass();
我想知道是否有办法在 C# 中获取对数组元素的引用。
类似这样但没有指针:
SomeClass *arr[5];
...
SomeClass** p = &arr[2];
到目前为止我得到了这个:
SomeClass arr[] = new SomeClass[5];
// Put something in the array
SomeClass p = arr[2]; // This will give me the initial object, not the array ref
p = new SomeClass(); // I want the array to now use this new object
这不就是你想要的吗?
var arr = new SomeClass[5];
ref SomeClass p = ref arr[2];
p = new SomeClass();