I have a list of values:
myCars
with values:
Ford
Ford
VW
Renault
Jeep
Jeep
which is referenced via:
myCars.Makers
I wish to create a distinct comma delimited string from this such that I get:
Ford,VW,Renault,Jeep
I am guessing that I need to run a distinct clause on myCars, but then am unsure about how to convert to comma delimited string as above.
Many thanks in advance
use string.Join
and Distinct
string.Join(",", myCars.Makers.Distinct());
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