SyntaxFix
Write A Post
Hire A Developer
Questions
If you have source as a string like "abcd" and want to produce a list like this:
"abcd"
{ "a.a" }, { "b.b" }, { "c.c" }, { "d.d" }
then call:
List<string> list = source.Select(c => String.Concat(c, ".", c)).ToList();