问题
Is there any established way of returning a read-only 2-d array in C#?
I know ReadOnlyCollection
is the right thing to use for a 1-d array, and am happy to write my own wrapper class that implements a this[] {get}
. But I don't want to reinvent the wheel if this wheel already exists.
回答1:
There's only one way to simulate this.
You need to create your own class, with a private array.
The most similar implementation of an array is an indexer:
- Using indexers
- Indexers (C# programming guide)
- 10.8 Indexers (old)
- C# 6.0 draft Indexers
The '10.8' link shows the simulation of a bidimensional array.
If you implement the indexer only with a getter, the user can only read the elements, but not write them. However, if each element is an object (reference type) you can't prevent the modification of the accessed objects properties.
However, there are several ways of simulating "read-only" objects:
- Create a wrapper class that exposes the properties of each element in the array as read only properties, so that they cannot be modified
- Using primitive value types (like
int
) - Defeating the changes by returning a copy of the element in the private array instead of the original element in the private array, so that, the changes made to the object don't affect the original object in the array.
In other languages like C++ there are references and pointers to constant values, but this doesn't exist in C#.
回答2:
Unfortunately there is no any built-in implementation to handle a case you ask for. But a simple implementation on your own, shouldn't be something difficult.
The only think, I hope you aware of it, that you will do is a readonly collection, but not elements inside that collection.
Hope this helps.
来源:https://stackoverflow.com/questions/10218084/read-only-two-dimensional-array-in-c-sharp