หน้าแรก
หน้าแรก
ในการตรวจสอบว่า HashSet เป็น superset ที่เหมาะสมของคอลเลกชันที่ระบุหรือไม่ รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections.Generic; public class Demo { public static void Main(){ HashSet<int> set1 = new HashSet<int>(); &n
หากต้องการลบรายการทั้งหมดออกจาก ListDictionary รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections; using System.Collections.Specialized; public class Demo { public static void Main(){ ListDictionary dict1 = new ListDictionary();
หากต้องการลบวัตถุทั้งหมดออกจากคิว โค้ดจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections.Generic; public class Demo { public static void Main(){ Queue<string> queue = new Queue<string>(); queue.Enqueue("Gary");
เพื่อให้ได้ตัวแจงนับที่วนซ้ำผ่าน HybridDictionary รหัสจะเป็นดังนี้ - ตัวอย่าง ใช้ System; ใช้ System.Collections; ใช้ System.Collections.Specialized; การสาธิตคลาสสาธารณะ { โมฆะคงที่สาธารณะ Main () { HybridDictionary dict1 =ใหม่ HybridDictionary (); dict1.Add(A, หนังสือ); dict1.Add(B, อิเล็กทรอนิกส์)
ในการรับ ICollection ที่มีค่าใน ListDictionary รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections; using System.Collections.Specialized; public class Demo { public static void Main(){ ListDictionary listDict = new ListDictionary(); &nbs
เพื่อให้ได้ตัวแจงนับที่วนซ้ำผ่าน ListDictionary รหัสจะเป็นดังนี้ - ตัวอย่าง ใช้ System; ใช้ System.Collections; ใช้ System.Collections.Specialized; การสาธิตคลาสสาธารณะ { โมฆะคงที่สาธารณะ Main () { ListDictionary dict1 =ใหม่ ListDictionary (); dict1.Add(A, หนังสือ); dict1.Add(B, อิเล็กทรอนิกส์); dict
ในการรับตัวแจงนับที่วนซ้ำผ่าน SortedDictionary รหัสจะเป็นดังนี้ - ตัวอย่าง ใช้ System; ใช้ System.Collections; ใช้ System.Collections.Generic; การสาธิตคลาสสาธารณะ { โมฆะสาธารณะแบบคงที่ Main () { SortedDictionary sortedDict =ใหม่ SortedDictionary (); sortedDict.Add(100, มือถือ); sortedDict.Add(200,
ในการรับ ICollection ที่มีคีย์ใน HybridDictionary รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections.Specialized; public class Demo { public static void Main(){ HybridDictionary dict = new HybridDictionary(); dict.Add("One&q
เพื่อตรวจสอบว่า HybridDictionary อ่านอย่างเดียวหรือไม่ โค้ดจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections; using System.Collections.Specialized; public class Demo { public static void Main() { HybridDictionary dict1 = new HybridDictionary(); &
ในการรับองค์ประกอบที่สองของทูเพิล โค้ดจะเป็นดังนี้ - ตัวอย่าง using System; public class Demo { public static void Main(String[] args) { var tuple1 = Tuple.Create(75, 200, 500, 700, 100, 1200, 1500); var tuple2 = Tuple.Create(75, 200, 500, 700,
หากต้องการลบองค์ประกอบที่ดัชนีที่ระบุของคอลเลกชัน รหัสมีดังนี้ - ตัวอย่าง using System; using System.Collections.ObjectModel; public class Demo { public static void Main() { Collection<string> col = new Collection<string>(); col.Add(
หากต้องการลบองค์ประกอบออกจาก HashSet ด้วยเงื่อนไขที่กำหนดโดยภาคแสดง รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections.Generic; public class Demo { private static bool demo(int i) { return (i == 100); } public static void Ma
ในการลบองค์ประกอบออกจาก SortedSet ที่ตรงกับเพรดิเคต รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections.Generic; public class Demo { private static bool demo(int i) { return ((i % 10) == 0); } public static void Main(String[]
ในการรับหรือตั้งค่าที่เกี่ยวข้องกับคีย์ที่ระบุใน ListDictionary รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections; using System.Collections.Specialized; public class Demo { public static void Main() { ListDictionary dict = new ListDictionary(); &nbs
ในการตรวจสอบว่าวัตถุ StringCollection สองวัตถุมีค่าเท่ากันหรือไม่ รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections.Specialized; public class Demo { public static void Main() { StringCollection strCol1 = new StringCollection();
ในการตรวจสอบว่าวัตถุ StringDictionary สองอันเท่ากันหรือไม่ รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections.Specialized; public class Demo { public static void Main() { StringDictionary strDict1 = new StringDictionary(); strDic
ในการรับหรือตั้งค่าที่เกี่ยวข้องกับคีย์ที่ระบุใน SortedList รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections; public class Demo { public static void Main() { SortedList list = new SortedList (); list.Add("A", "Bo
ในการรับวัตถุที่จุดเริ่มต้นของคิว รหัสจะเป็นดังนี้ − ตัวอย่าง using System; using System.Collections.Generic; public class Demo { public static void Main() { Queue<string> queue = new Queue<string>(); queue.Enqueue("A"); &n
หากต้องการลบรายการที่มีคีย์ที่ระบุออกจาก OrdererdDictionary ใน C # รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections; using System.Collections.Specialized; public class Demo { public static void Main() { OrderedDictionary dict = new OrderedDictionar
หากต้องการลบรายการด้วยคีย์ที่ระบุออกจาก StringDictionary รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections; using System.Collections.Specialized; public class Demo { public static void Main() { StringDictionary strDict1 = new StringDictionary(); &nb