หน้าแรก
หน้าแรก
ในการรับหรือตั้งค่าองค์ประกอบที่ดัชนีที่ระบุใน ArrayList รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections; public class Demo { public static void Main() { ArrayList arrList = new ArrayList(); arrList.Add("Laptop"); &n
ให้เราดูวิธีการใช้ Bitwise OR ระหว่างองค์ประกอบของ BitArray - ตัวอย่าง using System; using System.Collections; public class Demo { public static void Main() { BitArray arr1 = new BitArray(5); BitArray arr2 = new BitArray(5);
ในการคำนวณ Union of SortedSet เป็นคอลเล็กชัน รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections.Generic; public class Demo { public static void Main() { SortedSet<int> set1 = new SortedSet<int>(); set1.Add(50);
ในการรับหรือกำหนดจำนวนองค์ประกอบใน BitArray โค้ดจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections; public class Demo { public static void Main() { BitArray arr1 = new BitArray(2); BitArray arr2 = new BitArray(2);  
ในการรับรายการคีย์ของออบเจ็กต์ SortedList โค้ดจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections; public class Demo { public static void Main(String[] args) { SortedList list1 = new SortedList(); list1.Add("One", 1);
ในการรับรายการค่าของวัตถุ SortedList รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections; public class Demo { public static void Main(String[] args) { SortedList list = new SortedList(); list.Add("A", 1); &
ในการรับหรือกำหนดจำนวนขององค์ประกอบที่ ArrayList สามารถบรรจุได้ โค้ดจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections; public class Demo { public static void Main() { ArrayList arrList = new ArrayList(); arrList.Add(25); &nbs
ในการรับหรือตั้งค่าที่เกี่ยวข้องกับคีย์ที่ระบุใน Hashtable รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections; public class Demo { public static void Main() { Hashtable hash = new Hashtable(); hash.Add("1", "AB&quo
ในการรับค่าบิตที่ตำแหน่งเฉพาะใน BitArray รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections; public class Demo { public static void Main() { BitArray arr1 = new BitArray(2); BitArray arr2 = new BitArray(2); a
ในการรับ ICollection ที่มีคีย์ใน Hashtable รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections; public class Demo { public static void Main() { Hashtable hash = new Hashtable(); hash.Add("A", "Electronics"); &n
ในการรับ ICollection ที่มีค่าใน Hashtable รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections; public class Demo { public static void Main() { Hashtable hash = new Hashtable(); hash.Add("A", "Electronics"); &nb
ในการรับหรือตั้งค่าองค์ประกอบที่ดัชนีที่ระบุใน StringCollection รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections.Specialized; public class Demo { public static void Main() { StringCollection strCol = new StringCollection(); Str
ในการรับหรือตั้งค่าองค์ประกอบกินดัชนีที่ระบุในรายการ รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections.Generic; public class Demo { public static void Main(String[] args) { List<String> list = new List<String>(); lis
เพื่อให้ได้จำนวนองค์ประกอบที่มีอยู่ในคอลเล็กชัน โค้ดจะเป็นดังนี้ − ตัวอย่าง using System; using System.Collections.ObjectModel; public class Demo { public static void Main() { Collection<string> col = new Collection<string>(); col.Ad
หากต้องการลบองค์ประกอบทั้งหมดออกจากรายการ รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections.Generic; public class Demo { public static void Main(String[] args) { List<String> list1 = new List<String>(); list1.Add(&qu
หากต้องการลบสตริงทั้งหมดออกจาก StringCollection รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections.Specialized; public class Demo { public static void Main() { StringCollection stringCol = new StringCollection(); String[] arr = n
ในการรับหรือตั้งค่าที่คีย์ที่ระบุใน StringDictionary รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections.Specialized; public class Demo { public static void Main() { StringDictionary myDict = new StringDictionary(); myDict.Add(&qu
ในการรับหรือตั้งค่าใน HybridDictionary ด้วยคีย์ที่ระบุ โค้ดจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections.Specialized; public class Demo { public static void Main() { HybridDictionary myDict = new HybridDictionary(); myDict.Add(&
ในการแปลงค่าที่ระบุเป็นค่าบูลีนที่เทียบเท่า รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Globalization; public class Demo { public static void Main() { CultureInfo cultures = new CultureInfo("en-US"); String str = "true&
หากต้องการรับประเภทที่อ้างอิงโดยหมายเลขอ้างอิงประเภทที่ระบุ รหัสจะเป็นดังนี้ - ตัวอย่าง using System; public class Demo { public static void Main() { Type type1 = typeof(short); RuntimeTypeHandle typeHandle = Type.GetTypeHandle(type1); &n