I have an optional custom prefix and suffix in my application, that I want to add to each of the items in my string List. I have tried all of the following and none are working. Can someone point me in the right direction please?
List<string> myList = new List<string>{ "dog", "cat", "pig", "bird" };
string prefix = "my ";
string suffix = " sucks!";
StringBuilder sb = new StringBuilder();
sb.Append(suffix);
sb.Insert(0, prefix);
MyList = sb.ToString(); //This gives me red squigglies under sb.ToString();
I also tried:
myList = myList.Join(x => prefix + x + suffix).ToList(); //Red squigglies
and:
sortBox1.Join(prefix + sortBox1 + suffix).ToList(); //Red squigglies
Where am I going wrong here?
It's not really clear why you're using a StringBuilder
at all here, or why you'd be trying to do a join. It sounds like you want:
var suckingList = myList.Select(x => "my " + x + " sucks")
.ToList();
This is the absolutely normal way of performing a projection to each item in a list using LINQ.
List<string> myList = new List<string>{ "dog", "cat", "pig", "bird" };
List<string> myNewList = new List<string>();
string prefix = "my ";
string suffix = " sucks!";
foreach(string s in myList)
{
myNewList.Add(string.Format("{0}{1}{2}", prefix, s, suffix);
}
myNewList now contains the correct data.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With