我有一个获取字符串的代码,该字符串包含颜色名称。我想拆分用逗号分隔的字符串。这是我的代码。
public static string getcolours()
{
string str = null;
DBClass db = new DBClass();
DataTable allcolours = new DataTable();
allcolours = db.GetTableSP("kt_getcolors");
for (int i = 0; i < allcolours.Rows.Count; i++)
{
string s = allcolours.Rows[i].ItemArray[0].ToString();
string missingpath = "images/color/" + s + ".jpg";
if (FileExists(missingpath))
{
}
else
{
str = str + missingpath;
}
}
return str;
}