I was wondering if there is any structure in C# that can contain more than Int.MaxValue's restriction of 2,147,483,647 items, in case of really large sets of information. Would this have to be done with multi level arrays? Or could you create an array that has a maximum length of Long.MaxValue? If so, how?
|
|
It's been done, a sample |
|||
|
|
|
The CLR currently has a limit of 2GB for any single object - so you'd have to build it out of multiple arrays, even for an element type of I believe the CLR itself isn't restricted to an overall process limit which would prevent this - although you'd almost certainly want to be running on a 64-bit CLR and OS, of course. |
|||||||||||||
|
|
You could only use an index based structure if the indexer was a Even a |
|||
|
|
What is your requirement? It's hard to believe that an array with more elements than this is going to be the correct solution for any real-world problem, irrespective of whether it's legal or not. You may be thinking of a database here, whether persisted or in-memory. That's the standard means for organizing very large datasets. |
|||
|
|
|
Very little computers will have enough memory to hold such structure in-memory. |
|||||
|
|
ArrayList can contain more than Int.MaxValue. |
|||||||||
|

