我創建一個Web應用程序中,我需要通過,
字符串不包含「拆分」
這裏分割字符串我做了什麼
List<string> td = tdate.Split(',');
,但我得到這個定義錯誤
string does not contain a definition for 'split'
我這樣做是因爲我想拆分此字符串,然後插入分裂串入數據庫foreach循環的幫助下單獨
int i = 0;
foreach(string t in td)
{
// here will be my insert command
}
我需要處理這個錯誤?
你的'tdate'如何看起來像? –
嘗試'tdate.ToString()。拆分(',');'...什麼是數據類型的tdate –
'字符串[] td = tdate。Split(',');' –