比如,某一個陣列中,有重複的元素,我們想去除重複的,保留一個。
HashSet<T>含不重複項的無序列表,從MSDN網上了解到,這集合基於雜湊值,插入元素的操作非常快。
你可以寫一個方法:
class Bn { public string[] Data { get; set; } public string[] RemoveDuplicatesElement() { HashSet<string> hashSet = new HashSet<string>(Data); string[] result = new string[hashSet.Count]; hashSet.CopyTo(result); return result; } }
class Program { static void Main(string[] args) { Bn obj = new Bn(); obj.Data = new[] { "F", "D", "F", "E", "Q","Q", "D" }; var result = obj.RemoveDuplicatesElement(); for (int i = 0; i < result.Length; i++) { Console.WriteLine(result[i]); } Console.ReadLine(); } }