I just want to be sure:
string x = "";
char Char = x[0]; // throws exception: "Index was outside the bounds of the array"
This means that the string is really treated as an array of chars, right? (At least internally.)
|
|
|
Per @JaredPar elsewhere on this site:
I am sure you should not rely on this as it's not part of the interface, but implementation is an array if this statement is correct. That makes sense to me given what we know about char-strings and Microsoft's need to support efficient interop between managed and native languages. MSDN says only this, which does not guarantee that the storage is an array.
|
|||
|
|
|
The C# language spec makes no guarantee about the internal representation of a string. However, it implements the index operator to provide a char for each character in the string. Edit: To clarify since a few people have commented, yes, the internal representation of System.String in the CLR is an array. However, the language specification doesn't say anything about internal representation, so this could (but is unlikely to) change. It says that a string has to work as a sequence of chars. The only bit about this in the language spec is under section 1.3:
Additionally, MSDN states:
So in this case, we're now talking about the CLR and not the language. A string implemented with a linked list and an indexer that moved |
|||||||||||||||||
|
|
You might find this MSDN doc helpful. In a nutshell, a string is "stored as a sequential read-only collection of Char objects" And, yes, it can be accessed just like a char array. So, if X contained a value other than String.Empty, then the |
|||
|
|
|
As far as I know, that's correct. Btw here's a page with everything you ever wanted to know about Strings: |
|||
|
|
|
C# is just the language. The string keyword is an alias for System.String in the BCL of .Net framework. It is pretty safe to assume that internally String is an array of chars. From MSDN: A string is a sequential collection of Unicode characters that is used to represent text. A String object is a sequential collection of System.Char objects that represent a string. |
|||
|
|
|
It depends on what you mean by "array". If you mean the general computing concept of a random-access, fixed-length, integer-indexable collection of objects, then yes, a string can be considered precisely like that. (The general computing concept often includes being contiguous in memory, but barring a few cases, such as using pointers in unsafe code, that's not very meaningful in terms of C#). If you mean the language-defined C# implementation of this concept, In practice, Language nit-picks aside, the practical bit: If you want to do the same operations on a string as you would on a If you want to actually have an array of chars then you need to call |
|||
|
|