หน้าแรก
หน้าแรก
ในการสร้าง StringDictionary ใน C# รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections; using System.Collections.Specialized; public class Demo { public static void Main() { StringDictionary strDict = new StringDictionary(); strDic
ในการหาความยาวของ StringBuilder ใน C# รหัสจะเป็นดังนี้ - ตัวอย่าง ใช้ System; ใช้ System.Text; การสาธิตคลาสสาธารณะ { public static void Main (String [] args) { StringBuilder strBuilder1 =ใหม่ StringBuilder (Amy); StringBuilder strBuilder2 =StringBuilder ใหม่ (Katie); StringBuilder strBuilder3 =ใหม่
หากต้องการค้นหา MaxCapacity ของ StringBuilder รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Text; public class Demo { public static void Main(String[] args) { StringBuilder strBuilder1 = new StringBuilder("Amy"); StringBuilder
คลาส OrderedDictionary แสดงถึงชุดของคู่คีย์/ค่าที่คีย์หรือดัชนีสามารถเข้าถึงได้ ต่อไปนี้เป็นคุณสมบัติของคลาส OrderedDictionary - Sr.no คุณสมบัติ &คำอธิบาย 1 นับ รับจำนวนคู่ของคีย์/ค่าที่มีอยู่ในคอลเลกชัน OrderedDictionary 2 เป็นแบบอ่านอย่างเดียว รับค่าที่ระบุว่าคอลเลกชัน OrderedDictionary เป
ในการสร้าง OrderedDictionary ใน C # รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections; using System.Collections.Specialized; public class Demo { public static void Main() { OrderedDictionary dict = new OrderedDictionary(); dict.
ในการสร้าง StringBuilder ใน C# รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Text; public class Demo { public static void Main(String[] args) { StringBuilder strBuilder1 = new StringBuilder("Tim"); StringBuilder strBuilder2 =
เพื่อให้ได้จำนวนองค์ประกอบทั้งหมดในอาร์เรย์ โค้ดจะเป็นดังนี้ - ตัวอย่าง using System; public class Demo { public static void Main() { string[] products = { "Electronics", "Accessories", "Clothing", "Toys", "Clothing"
ในการค้นหาความจุของ StringBuilder ใน C# รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Text; public class Demo { public static void Main(String[] args) { StringBuilder strBuilder1 = new StringBuilder("Tim"); StringBuilder strBu
คลาส StringCollection แสดงถึงคอลเลกชันของสตริง ต่อไปนี้เป็นคุณสมบัติของคลาส StringCollection - Sr.no คุณสมบัติ &คำอธิบาย 1 นับ รับจำนวนคู่ของคีย์/ค่าที่มีอยู่ในคอลเลกชัน OrderedDictionary 2 เป็นแบบอ่านอย่างเดียว รับค่าที่ระบุว่า StringCollection เป็นแบบอ่านอย่างเดียวหรือไม่ 3 ซิงโครไนซ์ ร
เพื่อระบุว่าอักขระ Unicode ที่ระบุเป็นช่องว่างหรือไม่ โค้ดจะเป็นดังนี้ - ตัวอย่าง using System; public class Demo { public static void Main() { bool res; char val = ' '; Console.WriteLine("Value = "+val); &
เพื่อตรวจสอบว่า Dictionary มีคีย์ที่ระบุหรือไม่ รหัสมีดังนี้ − ตัวอย่าง using System; using System.Collections.Generic; public class Demo { public static void Main() { Dictionary<string, string> dict = new Dictionary<string, string>(
ในการรับหมายเลขอ้างอิงสำหรับประเภทของวัตถุที่ระบุ รหัสจะเป็นดังนี้ - ตัวอย่าง using System; public class Demo { public static void Main() { Type type1 = typeof(System.Type); RuntimeTypeHandle typeHandle = Type.GetTypeHandle(type1);
เพื่อให้ได้ฟิลด์ของประเภทปัจจุบัน รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Reflection; public class Demo { public static void Main() { Type type = typeof(System.String); FieldInfo [] fields = type.GetFields(BindingFlags.Static | Bi
ในการเพิ่มองค์ประกอบใน HashSet รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections.Generic; public class Demo { public static void Main(String[] args){ HashSet<string> set1 = new HashSet<string>(); set1.Add("A&quo
เพื่อให้ได้ค่าอาร์เรย์ของค่าคงที่ในประเภทการแจงนับปัจจุบัน รหัสจะเป็นดังนี้ - ตัวอย่าง using System; public class Demo { enum Vehicle {Car, Bus, Bike, Airplane} public static void Main() { try { Type type = typeof(int);
ในการเพิ่มคีย์และค่าที่ระบุลงใน ListDictionary โค้ดจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections; using System.Collections.Specialized; public class Demo { public static void Main(){ ListDictionary dict = new ListDictionary(); d
เพื่อให้ได้ฟิลด์เฉพาะของประเภทปัจจุบันใน C # รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Reflection; public class Demo { public static void Main() { Type type = typeof(Subject); try { FieldInfo fieldInfo = ty
ในการเพิ่มองค์ประกอบลงใน Hashtable โค้ดจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections; public class Demo { public static void Main(){ Hashtable hash = new Hashtable(10); hash.Add("1", "A");  
ในการรับรหัสแฮชสำหรับอินสแตนซ์นี้ รหัสจะเป็นดังนี้ - ตัวอย่าง using System; public class Demo { public static void Main() { string[] arr = {"tom", "amit", "kevin", "katie"}; Type t1 = arr.GetType();
เพื่อตรวจสอบว่าคอลเลกชัน OrderedDictionary มีคีย์เฉพาะหรือไม่ รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections; using System.Collections.Specialized; public class Demo { public static void Main(){ OrderedDictionary dict = new OrderedDictionary(); &