string a = "abc,xyz,wer";
现在,我需要这个字符串的一部分
string b = "abc";
我需要在第一个逗号之前的所有内容.我该如何得到它?
string b = a.Split(',')[0];