หน้าแรก
หน้าแรก
ในการตรวจสอบว่าวัตถุ SortedSet สองรายการเท่ากันหรือไม่ รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections.Generic; public class Demo { public static void Main(){ SortedSet<int> set1 = new SortedSet<int>(); set1.Add(10
เพื่อตรวจสอบว่า StringDictionary มีคีย์เฉพาะหรือไม่ รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections; using System.Collections.Specialized; public class Demo { public static void Main(){ StringDictionary strDict1 = new StringDictionary(); &n
เพื่อตรวจสอบว่า StringDictionary มีค่าเฉพาะหรือไม่ รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections; using System.Collections.Specialized; public class Demo { public static void Main(){ StringDictionary strDict1 = new StringDictionary(); &nb
ในการรับชุดของคีย์ใน StringDictionary รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections; using System.Collections.Specialized; public class Demo { public static void Main(){ StringDictionary strDict1 = new StringDictionary(); st
ในการตรวจสอบว่าวัตถุ BitArray สองชิ้นเท่ากันหรือไม่ รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections; public class Demo { public static void Main(){ BitArray arr1 = new BitArray(2); BitArray arr2 = new BitArray(2);  
ในการตรวจสอบว่า HashSet เป็นเซ็ตย่อยของคอลเล็กชันที่ระบุหรือไม่ โค้ดจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections.Generic; public class Demo { public static void Main(){ HashSet<string> set1 = new HashSet<string>();
หากต้องการตรวจสอบว่า Hashtable เท่ากับ Hashtable อื่นหรือไม่ รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections; public class Demo { public static void Main(){ Hashtable hash1 = new Hashtable(); hash1.Add("1", "Kev
ในการรับ ICollection ที่มีค่าใน OrderedDictionary รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections; using System.Collections.Specialized; public class Demo { public static void Main(){ OrderedDictionary dict = new OrderedDictionary();
ในการรับโหนดแรกของ LinkedList โค้ดจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections.Generic; public class Demo { public static void Main(){ LinkedList<String> list = new LinkedList<String>(); list.AddLast("A");
เพื่อให้ได้ตัวแจงนับที่วนซ้ำผ่านรายการ รหัสจะเป็นดังนี้ − ตัวอย่าง using System; using System.Collections.Generic; public class Demo { public static void Main(String[] args){ List<String> list1 = new List<String>(); list1.Add("O
ในการตรวจสอบว่าวัตถุ SortedList มีค่าเฉพาะหรือไม่ รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections; public class Demo { public static void Main(){ SortedList list = new SortedList(); list.Add("1", "One"); &n
เมธอด Array.BinarySearch() ใน C# ใช้ในการค้นหาช่วงขององค์ประกอบในอาร์เรย์ที่มีการจัดเรียงแบบหนึ่งมิติเพื่อหาค่า โดยใช้อินเทอร์เฟซ IComparable ที่ปรับใช้โดยแต่ละองค์ประกอบของอาร์เรย์และตามค่าที่ระบุ หมายเหตุ − มันค้นหาในอาร์เรย์ที่เรียงลำดับ ไวยากรณ์ ไวยากรณ์มีดังนี้ − public static int BinarySearc
วิธีการ Queue.CopyTo() ใน C# ใช้เพื่อคัดลอกองค์ประกอบคิวไปยังอาร์เรย์หนึ่งมิติที่มีอยู่ โดยเริ่มต้นที่ดัชนีอาร์เรย์ที่ระบุ ไวยากรณ์ ไวยากรณ์มีดังนี้ − public virtual void CopyTo (Array arr, int index); ด้านบน พารามิเตอร์ arr คืออาร์เรย์หนึ่งมิติที่เป็นปลายทางขององค์ประกอบที่คัดลอกมาจากคิว พารามิเต
คุณสมบัติ Queue.Count ใน C # ใช้เพื่อรับจำนวนขององค์ประกอบที่มีอยู่ในคิว ไวยากรณ์ ไวยากรณ์มีดังนี้ − public virtual int Count { get; } ตัวอย่าง เรามาดูตัวอย่างกัน − using System; using System.Collections.Generic; public class Demo { public static void Main() { Que
วิธี Queue.Dequeue() ใน C# ใช้เพื่อลบและส่งคืนวัตถุที่จุดเริ่มต้นของคิว ไวยากรณ์ ไวยากรณ์มีดังนี้ − public virtual object Dequeue (); ตัวอย่าง เรามาดูตัวอย่างกัน − using System; using System.Collections.Generic; public class Demo { public static void Main() { Queu
เมธอด String.IndexOf() ใน C# ใช้เพื่อค้นหาดัชนีแบบอิงศูนย์ของการเกิดขึ้นครั้งแรกของอักขระหรือสตริง Unicode ที่ระบุภายในอินสแตนซ์นี้ ไวยากรณ์ ไวยากรณ์มีดังนี้ − public int IndexOf (string val); ด้านบน val คือสตริงที่จะค้นหา ตัวอย่าง เรามาดูตัวอย่างกัน − using System; public class Demo { &nb
เมธอด String.IsNormalized() ใน C# ใช้เพื่อระบุว่าสตริงนี้อยู่ในรูปแบบการทำให้เป็นมาตรฐานของ Unicode หรือไม่ ไวยากรณ์ ไวยากรณ์มีดังนี้ − public bool IsNormalized (); public bool IsNormalized (System.Text.NormalizationForm normalizationForm); ด้านบน พารามิเตอร์ normalizationForm คือ แบบฟอร์มการทำให้
TimeSpan.FromMilliseconds() วิธีการใน C# ใช้เพื่อส่งคืน TimeSpan ที่แสดงจำนวนมิลลิวินาทีที่ระบุ ไวยากรณ์มีดังนี้ − ไวยากรณ์ public static TimeSpan FromMilliseconds (double val); ด้านบน val คือจำนวนมิลลิวินาที ตัวอย่าง เรามาดูตัวอย่างกัน − using System; public class Demo { public stat
วิธีการ Stack.Contains() ใน C# ใช้เพื่อตรวจสอบว่าองค์ประกอบนั้นอยู่ใน Stack หรือไม่ ไวยากรณ์ ไวยากรณ์มีดังนี้ − public virtual bool Contains (object ob); ด้านบน ob คือวัตถุที่จะค้นหาในสแต็ก ตัวอย่าง เรามาดูตัวอย่างกัน − using System; using System.Collections; public class Demo { publ
คุณสมบัติ Stack.Count ใน C # ใช้เพื่อรับจำนวนองค์ประกอบที่มีอยู่ใน Stack ไวยากรณ์ ไวยากรณ์มีดังนี้ − public virtual int Count { get; } ตัวอย่าง เรามาดูตัวอย่างกัน − using System; using System.Collections; public class Demo { public static void Main() { Stack stack