Why on Earth would someone convert a string to a char[] before enumerating the characters in it? The regular pattern for initializing a System.Security.SecureString found all around the net follows:

SecureString secureString = new SecureString();
foreach (char c in "fizzbuzz".ToCharArray())
{
    secureString.AppendChar(c);
}

Calling ToCharArray() makes no sense for me. Could someone tell whether I am wrong here?

link|improve this question
feedback

2 Answers

up vote 6 down vote accepted

Since string implements IEnumerable<char>, it's not necessary in this context. The only time you need ToCharArray is when you actually need an array.

My guess is that most people who call ToCharArray don't know that string implements IEnumerable (even though as far as I know it always has).

link|improve this answer
A lot of it may be cargo cult programming. People see others do it and not ever investigate to understand why it's not necessary. – Gabe Apr 28 '11 at 0:07
feedback

Actually that is bad because it

  • enumerates on the string
  • creates an array with a copy of all chars
  • enumerates on that

A lot of unnecessary work...

That's because strings are immutable, and giving out a pointer to its internal array is not allowed, so ToCharArray() makes a copy instead of a cast.

That is:

you can enumerate a string as a char[] but:

you cannot:

var chars = (char[])"string";

If you would go enumerating and would want to break at some point, by using the toCharArray() would already have enumerated the whole string nad made a copy of all chars. If the string would be very big, that is quite expensive...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.