12

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.

sblom
  • 26,911
  • 4
  • 71
  • 95

2 Answers2

3

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.

Tigran
  • 61,654
  • 8
  • 86
  • 123
2

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:

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#.

JotaBe
  • 38,030
  • 8
  • 98
  • 117
  • The 10.8 link is broken. Here it is on the wayback machine:https://web.archive.org/web/20120103002717/http://msdn.microsoft.com/en-us/library/aa664459(v=vs.71).aspx – David Oct 22 '18 at 05:13