Say I want to get the third letter in a string.
string s = "cats";
what is the difference between using s[2] to get the value, as I see most examples online use:
char[] c = s.ToCharArray();
char x = c[2];
|
|
|||||||||
|
|
The The If you need just a single character, use the EDIT: Both MS.NET and Mono's implementations of
vs
or
|
|||||||||
|
|
The difference is exactly that you're creating a character array unnecessarily. Use s[2]. |
|||
|
|
|
If you're just reading the character the difference is only a slightly larger memory footprint. However, if you also want to change some characters and retain the original string then utilizing |
|||
|
|