J'ai le code ci-dessous:
List<string> aa = (from char c in source
select new { Data = c.ToString() }).ToList();
Mais qu'en est-il
List<string> aa = (from char c1 in source
from char c2 in source
select new { Data = string.Concat(c1, ".", c2)).ToList<string>();
Lors de la compilation en obtenant une erreur
Impossible de convertir implicitement le type
'System.Collections.Generic.List<AnonymousType#1>'
à'System.Collections.Generic.List<string>'
Besoin d'aide pour.
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());
Ensuite, vous pouvez appeler 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();
Si vous voulez que ce soit List<string>
, Supprimez le type anonyme et ajoutez un appel .ToList()
:
List<string> list = (from char c in source
select c.ToString()).ToList();
essayer
var lst= (from char c in source select c.ToString()).ToList();
Si vous avez source comme chaîne comme "abcd"
et que vous voulez produire une liste comme celle-ci:
{ "a.a" },
{ "b.b" },
{ "c.c" },
{ "d.d" }
puis appelez:
List<string> list = source.Select(c => String.Concat(c, ".", c)).ToList();
Je pense que les réponses sont ci-dessous
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();