I want to make a list from Enumerable.Range. Is this code correct?
SurnameStartLetterList = new List<char>();
Enumerable.Range(65, 26).ToList().ForEach(character => SurnameStartLetterList.Add((char)character));
Or is there a better way to make this type of list?
Thanks in advance :)
new List<char> { 'A', 'B', ... 'Z' }I'll shut up now. – BoltClock♦ Apr 17 '11 at 13:46Range()beRange(65, 26)? The second parameter isn't the end number, it's the length of the range. – BoltClock♦ Apr 17 '11 at 13:51