I have a string that is populated from an Xceed datagrid, as such:
study = row.Cells["STUDY_NAME"].Value.ToString().TrimEnd (Environment.NewLine.ToCharArray());
However, when I pass the study string into another part of the program, it throws an error as the string is still showing as : "PI3K1003\n "
I have also tried:
TrimEnd('\r', '\n');
Anybody any ideas?
Thanks.