I have list like...
List[0] = "Banana"
List[1] = "Apple"
List[2] = "Orange"
I want to produce output as "My-Banana,My-Apple,My-Orange"
for that I'm using the following code:
string AnyName = string.Join(",", Prefix + List));
But not getting the expected output, how to add My- before every item?