หน้าแรก
หน้าแรก
เพื่อให้ได้ประเภทของอินสแตนซ์ปัจจุบัน รหัสจะเป็นดังนี้ - ตัวอย่าง using System; public class Demo { public static void Main(){ string s = "Demo"; Console.WriteLine("String = " +s); Console.WriteLine("
เพื่อให้ได้ประเภทขององค์ประกอบของทูเพิล โค้ดจะเป็นดังนี้ − ตัวอย่าง using System; public class Demo { public static void Main(String[] args){ var tuple1 = Tuple.Create(150, 1500, Tuple.Create(50, 100)); var tuple2 = Tuple.Create(150, 1500, Tuple
ในการรับตัวระบุเฉพาะสำหรับเธรดที่มีการจัดการในปัจจุบัน โค้ดจะเป็นดังนี้ − ตัวอย่าง using System; using System.Threading; public class Demo { public static void Main(){ Thread thread = new Thread(new ThreadStart(demo1)); ThreadPool.QueueUserWorkI
ในการเพิ่มคู่คีย์/ค่าใน SortedList รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections; public class Demo { public static void Main(String[] args){ SortedList list = new SortedList(); list.Add("A", "Jacob"); &n
ในการตรวจสอบสถานะปัจจุบันของเธรด รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Threading; public class Demo { public static void Main(){ Thread thread = new Thread(new ThreadStart(demo1)); ThreadPool.QueueUserWorkItem(new WaitCallback(d
ในการสร้าง SortedSet รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections.Generic; public class Demo { public static void Main(){ SortedSet<string> set1 = new SortedSet<string>(); set1.Add("AB");
ในการเพิ่มวัตถุที่ส่วนท้ายของ ArrayList รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections; public class Demo { public static void Main(String[] args){ ArrayList list = new ArrayList(); list.Add("Tim"); &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)
ในการเพิ่มคีย์และค่าลงใน StringDictionary รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections; using System.Collections.Specialized; public class Demo { public static void Main() { StringDictionary strDict = new StringDictionary();  
ในการรับกุญแจในวัตถุ SortedList รหัสจะเป็นดังนี้ - ตัวอย่าง ใช้ System; ใช้ System.Collections; การสาธิตคลาสสาธารณะ { โมฆะสาธารณะหลัก (สตริง [] args) { SortedList list =ใหม่ SortedList (); list.Add(หนึ่ง, การเงิน); list.Add(สอง, การตลาด); list.Add(สาม, ขาย); list.Add(สี่, ซื้อ); list.Add(ห้า, ปฏิบัต
หากต้องการตรวจสอบว่า SortedList เป็นแบบอ่านอย่างเดียวหรือไม่ โค้ดจะเป็นดังนี้ − ตัวอย่าง using System; using System.Collections; public class Demo { public static void Main(String[] args) { SortedList list = new SortedList(); list.Add("One&
ในการลบการเกิดขึ้นครั้งแรกของวัตถุเฉพาะออกจาก ArrayList รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections; public class Demo { public static void Main(String[] args) { ArrayList list1 = new ArrayList(); list1.Add("A");
หากต้องการลบองค์ประกอบที่ระบุออกจากรายการ รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections.Generic; public class Demo { public static void Main(String[] args) { List<String> list1 = new List<String>(); list1.Add(&qu
เพื่อตรวจสอบว่า Hashtable ซิงโครไนซ์หรือไม่ รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections; public class Demo { public static void Main() { Hashtable hash = new Hashtable(); hash.Add("One", "Katie");  
เพื่อตรวจสอบว่า SortedDictionary มีคีย์ที่ระบุหรือไม่ รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections; using System.Collections.Generic; public class Demo { public static void Main() { SortedDictionary<int, string> sortedDict = new SortedDic
ในการเพิ่มองค์ประกอบในรายการ รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections.Generic; public class Demo { public static void Main(String[] args) { List<String> list = new List<String>(); list.Add("One");
ในการเพิ่มองค์ประกอบที่ส่วนท้ายของ ArrayList โค้ดจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections; public class Demo { public static void Main(String[] args) { ArrayList list = new ArrayList(); list.Add("Andy"); &n
ในการเพิ่มโหนดหรือค่าใหม่ที่ส่วนท้ายของ LinkedList โค้ดจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections.Generic; public class Demo { public static void Main() { LinkedList<String> list = new LinkedList<String>(); list.A
เพื่อตรวจสอบว่า HybridDictionary มีขนาดคงที่หรือไม่ รหัสจะเป็นดังนี้ − ตัวอย่าง using System; using System.Collections; using System.Collections.Specialized; public class Demo { public static void Main() { HybridDictionary dict1 = new HybridDictionary(); &nbs
ในการรับจำนวนโหนดที่มีอยู่ใน LinkedList โค้ดจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections.Generic; public class Demo { public static void Main() { LinkedList<String> list = new LinkedList<String>(); list.AddLast(&quo