Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have the code below:

List<string> aa = (from char c in source
                   select new { Data = c.ToString() }).ToList();

But what about

List<string> aa = (from char c1 in source
                   from char c2 in source
                   select new { Data = string.Concat(c1, ".", c2)).ToList<string>();

While compile getting error

Cannot implicitly convert type 'System.Collections.Generic.List<AnonymousType#1>' to 'System.Collections.Generic.List<string>'

Need help.

share|improve this question
What is the final task and what is the source? – abatishchev Nov 23 '10 at 13:28
As far as your last edit mentiones the same source twice, see my answer #2 - it can help you. – abatishchev Nov 23 '10 at 13:34

5 Answers

up vote 15 down vote accepted
IEnumerable<string> e = (from char c in source
                        select new { Data = c.ToString() }).Select(t = > t.Data);
// or
IEnumerable<string> e = from char c in source
                        select c.ToString();
// or
IEnumerable<string> e = source.Select(c = > c.ToString());

Then you can call ToList():

List<string> l = (from char c in source
                  select new { Data = c.ToString() }).Select(t = > t.Data).ToList();
// or
List<string> l = (from char c in source
                  select c.ToString()).ToList();
// or
List<string> l = source.Select(c = > c.ToString()).ToList();
share|improve this answer
Than how about this – priyanka.sarkar_2 Nov 23 '10 at 13:20
1  
@priyanka.sarkar_2: You should use Select(x => x.Data).ToList() to select the list of such datas. – abatishchev Nov 23 '10 at 13:22

If you want it to be List<string>, get rid of the anonymous type and add a .ToList() call:

List<string> list = (from char c in source
                     select c.ToString()).ToList();
share|improve this answer
What about List<string> aa = ( from char c1 in source from char c2 in source select new { Data = string.Concat(c1, ".", c2)).ToList<string>(); – priyanka.sarkar_2 Nov 23 '10 at 13:21

If you have source as a string like "abcd" and want to produce a list like this:

{ "a.a" },
{ "b.b" },
{ "c.c" },
{ "d.d" }

then call:

List<string> list = source.Select(c => String.Concat(c, ".", c)).ToList();
share|improve this answer

I think the answers are below

List<string> aa = (from char c in source
                    select c.ToString() ).ToList();

List<string> aa2 = (from char c1 in source
                    from char c2 in source
                    select string.Concat(c1, ".", c2)).ToList();
share|improve this answer

try

var lst= (from char c in source select c.ToString()).ToList();
share|improve this answer
I cannot use var.. it has to be List<string> because of some reason – priyanka.sarkar_2 Nov 23 '10 at 13:16
This way you will get List<AnonymousType#1> – abatishchev Nov 23 '10 at 13:17
@Rover: no it doesn't, .ToList() turns IEnumerable<AnonymousType#1> into List<AnonymousType#1> – Jonathan Rupp Nov 23 '10 at 13:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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