質問があります。文字列を分割して、分割された文字列を1行ずつ表示するにはどうすればよいですか?
弦:
What is "that" ENUM "No", "Yes", "OK", "Cancel";
DataTableが欲しい:
Name Type Comment
"that" ENUM "No" // all of them
"Yes" // should be
"OK" // in the same
"Cancel" // cell
string[] tmpList = tmp.Split(new Char[] { ' ',',', ';' }, StringSplitOptions.RemoveEmptyEntries);
と何かでなければなりませんattributeDEF.Rows.Add(new object[] { tmpList1[1], tmpList1[2], tmpList1[3] + "\n" + tmpList[a]+ "\n"});
誰かが私に手がかりを与えることができますか?