Does anyone know if you can cast a List<int> to List<string> somehow? I know I could loop through and .ToString() the thing but a cast would be awesome.
I'm in c# 2.0 (so no linq)
|
|
|
2.0 Has the
|
|||||||||
|
|
Updated for 2010
|
|||||||||
|
|
Is C# 2.0 able to do List
Something along those lines. Upvote Glenn's answer, which is probably the correct code ;-) |
||||
|
|
|
You wouldn't be able to directly cast it as no explicit or implicit cast exists from int to string, it would have to be a method involving .ToString() such as:-
Edit - or as others have pointed out rather brilliantly, use intList.ConvertAll(delegate(int i) { return i.ToString(); });, however clearly you still have to use .ToString() and it's a conversion rather than a cast. |
|||||
|
|
You have to build a new list. The underlying bit representations of It is theoretically possible to treat a |
|||
|
|
You can use:
|
|||
|
|