Since String implements IEnumerable<char>
, I was expecting to see the Enumerable extension methods in Intellisense, for example, when typing the period in
String s = "asdf";
s.
I was expecting to see .Select<char>(...)
, .ToList<char>()
, etc.
I was then suprised to see that the extension methods do in fact work on the string class, they just don't show up in Intellisense. Does anyone know why this is?
This may be related to this question.