I have a problem with adding line break in a string. I have tried using \"\\r\\n\", and Environment.NewLine also does not work.
FirmNames = \"\"; foreach (v
This worked for me:
foreach (var item in FirmNameList){ if (FirmNames != "") { FirmNames += ",\r\n" } FirmNames += item; }