通過IndexOf方法來查找對象在ArrayList中的位置

通過IndexOf方法來查找對象在ArrayList中的位置

ArrayList alcollect = new ArrayList();

// Add individual items to the collection

string str = "learn csharp";

alcollect.Add(str);

//find position of object codego.net 

Console.WriteLine(alcollect.IndexOf(str));


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章