HashSet
十年的永靖網(wǎng)站建設(shè)經(jīng)驗,針對設(shè)計、前端、開發(fā)、售后、文案、推廣等六對一服務(wù),響應(yīng)快,48小時及時工作處理。全網(wǎng)營銷推廣的優(yōu)勢是能夠根據(jù)用戶設(shè)備顯示端的尺寸不同,自動調(diào)整永靖建站的顯示方式,使網(wǎng)站能夠適用不同顯示終端,在瀏覽器中調(diào)整網(wǎng)站的寬度,無論在任何一種瀏覽器上瀏覽網(wǎng)站,都能展現(xiàn)優(yōu)雅布局與設(shè)計,從而大程度地提升瀏覽體驗。成都創(chuàng)新互聯(lián)公司從事“永靖網(wǎng)站設(shè)計”,“永靖網(wǎng)站推廣”以來,每個客戶項目都認(rèn)真落實執(zhí)行。
SortedSet
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication8 { class Program { static void Main(string[] args) { //=============================【HashSet】============================== //-----------------添加 HashSet test = new HashSet { "a", "b", "c" }; if (!test.Add("a"))//如果列表中存在就不會添加,并返回false Console.WriteLine("該元素已存在,不添加"); if (test.Add("d")) Console.WriteLine("添加元素成功"); //-----------------比較 HashSet test1 = new HashSet { "a", "b", "c"}; HashSet test2 = new HashSet { "a", "b", "c","d" }; if (test1.IsSubsetOf(test2)) { Console.WriteLine("test1的每個元素test2都有"); } if (test1.IsSubsetOf(test2)) { Console.WriteLine("test2相對于test1有額外的元素"); } if (test1.Overlaps(test2)) { Console.WriteLine("test2與test1有共同的元素"); } //=============================【HashSet 】============================== //------------添加集 SortedSet sd = new SortedSet (test1);//將test1中的所有元素添加到有序列表中 sd.UnionWith(test2);//將test2中的所有元素添加到有序列表中【結(jié)果會排除重復(fù)的元素,并排序】 sd.Add("aa"); //------------刪除集 sd.Remove("d");//刪除匹配的元素 sd.RemoveWhere(r => r == "aa");//刪除匹配的元素 sd.ExceptWith(test1);//刪除集 foreach (var item in sd) { Console.WriteLine(item); } Console.ReadKey(); } } }