我有這個代碼,我有一個arrayList。我使用方法arrayList.Contains。C#插入一個變量
if (arrayList2.Contains(5))
{
//something
}
我想在代碼中用一個包含值arrayList2的變量(例如一個字符串)替換arrayList2。
string hello = "arrayList2" // create a varible with the value of the name of the arrayList
if (hello.Contains(5)) // insert the variable "hello" instead of "arrayList2"
{
//something
}
此方法不起作用,任何想法如何我可以得到它的工作?
你是什麼意思5?這是索引或子字符串? – red1ynx 2011-06-13 10:22:09
你還沒有澄清這個問題,而不是你之前關閉的問題。 *你爲什麼認爲這是你想要做的事情?* – 2011-06-13 10:23:17
命名變量'hello'讓我覺得你不尊重我們,並期望我們猜測你的難題。 – Snowbear 2011-06-13 10:25:39