是否有可能從arraylist在c#中取得唯一值?實際上,我有一個包含值= 100,101,102,101,100,102,103的數組列表,但是我想從這個數值中獲得唯一值,如100,101,102,103。那麼,爲了從arralist獲取不同/獨特的值,c#語法是什麼?如何從arraylist中獲取不同/獨特的值?
我試圖
Arraylist Others=new Arraylist();
others=TakeanotherValues();
others.Distinct().Toarray();
但錯誤是「System.Collection.ArrayList不copntain認定中的獨立的」
你可以發佈你的試用碼嗎? – Rami
Arraylist Others = new Arraylist();他人= TakeanotherValues(); others.Distinct()指定者(); – user1659510
不要再使用'ArrayList'。當C#沒有_Generics_時,它屬於過去的日子。改爲使用'List'。 –