หน้าแรก
หน้าแรก
ในการลบรายการทั้งหมดออกจาก HybridDictionary รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections; using System.Collections.Specialized; public class Demo { public static void Main(){ HybridDictionary dict1 = new HybridDictionary();
เพื่อให้ได้ตัวแจงนับที่วนซ้ำผ่าน Hashtable รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections; public class Demo { public static void Main(){ Hashtable hash = new Hashtable(10); hash.Add("1", "A"); &nbs
ในการรับค่าต่ำสุดใน SortedSet รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections.Generic; public class Demo { public static void Main(){ SortedSet<string> set1 = new SortedSet<string>(); set1.Add("AB"); &nbs
เพื่อให้ได้จำนวนองค์ประกอบที่มีอยู่จริงใน ArrayList โค้ดจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections; public class Demo { public static void Main(String[] args){ ArrayList list1 = new ArrayList(); list1.Add("A"); &nbs
ในการรับตัวแจงนับที่วนซ้ำผ่านคอลเล็กชัน โค้ดจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections.ObjectModel; public class Demo { public static void Main(){ Collection<string> col = new Collection<string>(); col.Add("A
เพื่อให้ได้จำนวนองค์ประกอบที่มีอยู่ใน SortedList โค้ดจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections; public class Demo { public static void Main(String[] args){ SortedList sortedList = new SortedList(); sortedList.Add("A&quo
เพื่อให้ได้จำนวนองค์ประกอบที่อยู่ในคิว โค้ดจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections.Generic; public class Demo { public static void Main(){ Queue<string> queue = new Queue<string>(); queue.Enqueue("Gary&quo
ในการแปลงคิวเป็นอาร์เรย์ รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections.Generic; public class Demo { public static void Main(){ Queue<int> queue = new Queue<int>(); queue.Enqueue(100); queue.E
ในการแปลง stack เป็นอาร์เรย์ รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections.Generic; public class Demo { public static void Main(){ Stack<string> stack = new Stack<string>(); stack.Push("AB"); &nb
หากต้องการเพิ่มวัตถุที่ส่วนท้ายของคิว โค้ดจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections.Generic; public class Demo { public static void Main(){ Queue<string> queue = new Queue<string>(); queue.Enqueue("Electroni
เพื่อให้ได้จำนวนองค์ประกอบที่อยู่ในกอง โค้ดจะเป็นดังนี้ − ตัวอย่าง using System; using System.Collections.Generic; public class Demo { public static void Main(){ Stack<string> stack = new Stack<string>(); stack.Push("A"); &
เพื่อให้ได้จำนวนองค์ประกอบใน SortedSet รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections.Generic; public class Demo { public static void Main(){ SortedSet<string> set1 = new SortedSet<string>(); set1.Add("AB&quo
เพื่อให้ได้ตัวแจงนับที่วนซ้ำผ่าน LinkedList รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections.Generic; public class Demo { public static void Main(){ LinkedList<string> list = new LinkedList<string>(); list.AddLast(&
เพื่อให้ได้องค์ประกอบที่ห้าของทูเปิล รหัสจะเป็นดังนี้ - ตัวอย่าง 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
หากต้องการลบองค์ประกอบด้วยคีย์ที่ระบุออกจาก Hashtable รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections; public class Demo { public static void Main(){ Hashtable hash = new Hashtable(10); hash.Add("1", "A");
ในการตรวจสอบว่าวัตถุ List สองรายการเท่ากันหรือไม่ รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections.Generic; public class Demo { public static void Main(String[] args){ List<string> list1 = new List<string>(); list1.
เพื่อตรวจสอบว่าสองวัตถุ ListDictionary เท่ากันหรือไม่ รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections; using System.Collections.Specialized; public class Demo { public static void Main(){ ListDictionary dict1 = new ListDictionary();
ในการรับองค์ประกอบแรกของทูเปิล รหัสจะเป็นดังนี้ − ตัวอย่าง 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, 100,
ในการรับหรือตั้งค่าบิตที่ตำแหน่งเฉพาะใน BitArray โค้ดจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections; public class Demo { public static void Main(){ BitArray arr1 = new BitArray(2); BitArray arr2 = new BitArray(2); &
ในการรับการแจงนับสำหรับช่วงขององค์ประกอบใน ArrayList โค้ดจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections; public class Demo { public static void Main(){ ArrayList arrList = new ArrayList(); arrList.Add(100); a