C# 提取逗号分割的字符串
string s = "111,222,333"; List<string> list = new List<string>(s.Split(','));
结果是list[0]=111;list[1]=222,list[3]=333