หน้าแรก
หน้าแรก
ในการสร้าง HybridDictionary ที่คำนึงถึงขนาดตัวพิมพ์โดยมีขนาดเริ่มต้นที่ระบุ รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections; using System.Collections.Specialized; public class Demo { public static void Main(){ HybridDictionary myDict = new HybridD
ในการสร้าง HybridDictionary ด้วยขนาดเริ่มต้นที่ระบุ โค้ดจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections; using System.Collections.Specialized; public class Demo { public static void Main(){ HybridDictionary dict = new HybridDictionary(5);  
เพื่อให้ได้ตัวแจงนับที่วนซ้ำผ่าน SortedList รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections; public class Demo { public static void Main(String[] args){ SortedList sortedList = new SortedList(); sortedList.Add("A", &
ในการสร้าง wrapper แบบอ่านอย่างเดียวสำหรับ ArrayList โค้ดจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections; public class Demo { public static void Main(){ ArrayList list = new ArrayList(); list.Add("One"); &n
ในการตรวจสอบว่าวัตถุสตริงสองรายการมีค่าเท่ากันหรือไม่ รหัสจะเป็นดังนี้ - ตัวอย่าง using System; public class Demo { public static void Main(String[] args){ string str1 = "John"; string str2 = "John"; Cons
ในการตรวจสอบว่าวัตถุ StringBuilder สองรายการเท่ากันหรือไม่ รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Text; public class Demo { public static void Main(String[] args){ StringBuilder strBuilder1 = new StringBuilder("Tim"); S
ในการตรวจสอบว่าออบเจ็กต์ทูเพิลสองออบเจ็กต์เท่ากันหรือไม่ โค้ดจะเป็นดังนี้ − ตัวอย่าง using System; public class Demo { public static void Main(String[] args){ var tuple1 = Tuple.Create(150, 400, 500, 700, 100, 1200, 1500); var tuple2 = Tuple.Cre
ในการรับสำเนา OrderedDictionary แบบอ่านอย่างเดียว รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections; using System.Collections.Specialized; public class Demo { public static void Main(){ OrderedDictionary dict1 = new OrderedDictionary();  
ในการลบองค์ประกอบทั้งหมดออกจาก HashSet รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections.Generic; public class Demo { public static void Main(String[] args){ HashSet<string> set1 = new HashSet<string>(); set1.Add(&qu
หากต้องการลบองค์ประกอบทั้งหมดออกจาก SortedList โค้ดจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections; public class Demo { public static void Main(String[] args){ SortedList sortedList = new SortedList(); sortedList.Add("A"
เพื่อตรวจสอบว่า ListDictionary เป็นแบบอ่านอย่างเดียวหรือไม่ โค้ดจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections; using System.Collections.Specialized; public class Demo { public static void Main(){ ListDictionary dict1 = new ListDictionary(); &
เพื่อตรวจสอบว่า ListDictionary ซิงโครไนซ์หรือไม่ รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections; using System.Collections.Specialized; public class Demo { public static void Main(){ ListDictionary dict = new ListDictionary();
ในการลบองค์ประกอบทั้งหมดออกจาก OrderedDictionary รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections; using System.Collections.Specialized; public class Demo { public static void Main(){ OrderedDictionary dict = new OrderedDictionary();
หากต้องการลบองค์ประกอบทั้งหมดออกจาก ArrayList โค้ดจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections; public class Demo { public static void Main(String[] args){ ArrayList list1 = new ArrayList(); list1.Add("A"); &nb
เพื่อให้ได้องค์ประกอบที่หกของทูเปิล รหัสจะเป็นดังนี้ - ตัวอย่าง 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; 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
หากต้องการลบช่วงขององค์ประกอบออกจาก ArrayList โค้ดจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections; public class Demo { public static void Main(String[] args){ ArrayList list1 = new ArrayList(); list1.Add("A"); &nb
ในการลบรายการที่ระบุออกจาก SortedSet รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections.Generic; public class Demo { public static void Main(){ SortedSet<string> set1 = new SortedSet<string>(); set1.Add("AB"
ในการลบองค์ประกอบทั้งหมดออกจาก SortedSet รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections.Generic; public class Demo { public static void Main(){ SortedSet<string> set1 = new SortedSet<string>(); set1.Add("AB&q
ในการลบองค์ประกอบทั้งหมดในคอลเลกชันจาก HashSet รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections.Generic; public class Demo { public static void Main(String[] args){ HashSet<string> set1 = new HashSet<string>(); set1