Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C#
C#
  1. จะสร้าง StringCollection ใน C # ได้อย่างไร?

    ในการสร้าง StringCollection ใน C# รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections.Specialized; public class Demo {    public static void Main(){       StringCollection strCol = new StringCollection();       String[] strArr = new String[] { &

  2. จะรับ HashCode ของ tuple ใน C # ได้อย่างไร

    ในการรับ HashCode ของทูเพิล โค้ดจะเป็นดังนี้ - ตัวอย่าง using System; public class Demo {    public static void Main(String[] args){       var tuple1 = Tuple.Create(150, 400, 500, 700, 100, 1200, 1500, Tuple.Create(50, 100));       var tuple2 = Tuple.Create(15

  3. จะเล่นเสียงบี๊บที่ผู้ใช้แก้ไขผ่านคอนโซลใน C # ได้อย่างไร

    ในการเล่นเสียงบี๊บที่ผู้ใช้แก้ไขผ่านคอนโซล รหัสมีดังนี้ - ตัวอย่าง using System; public class Demo {    public static void Main(String[] args){       Console.WriteLine("Displaying standard output stream...");       Console.WriteLine("Standard Ou

  4. จะลบองค์ประกอบออกจากดัชนีที่ระบุของรายการใน C # ได้อย่างไร

    หากต้องการลบองค์ประกอบออกจากดัชนีที่ระบุของรายการ รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections.Generic; public class Demo {    public static void Main(String[] args){       List<string> list = new List<string>();       list.Ad

  5. จะดึงข้อมูลอ้างอิงของระบบไปยัง String ที่ระบุใน C # ได้อย่างไร

    ในการดึงข้อมูลอ้างอิงของระบบไปยังสตริงที่ระบุ โค้ดจะเป็นดังนี้ - ตัวอย่าง using System; public class Demo{    public static void Main(string[] args){       string str1 = "David";       string str2 = string.Intern(str1);       Console.W

  6. ตรวจสอบว่า Caps Lock และ Num Lock เปิดหรือปิดผ่าน Console ใน C #

    ในการตรวจสอบว่า Caps Lock เปิดหรือปิดผ่านคอนโซลหรือไม่ โค้ดจะเป็นดังนี้ - ตัวอย่าง using System; public class Demo{    public static void Main(string[] args){       Console.WriteLine("The CAPS LOCK is on or not? "+ Console.CapsLock);    } } ผลลัพธ์ สิ่งน

  7. ตรวจสอบว่าอินพุต เอาต์พุต และข้อผิดพลาดถูกเปลี่ยนเส้นทางบนคอนโซลหรือไม่ใน C#

    ในการตรวจสอบว่าอินพุตถูกเปลี่ยนเส้นทางบนคอนโซลหรือไม่ รหัสจะเป็นดังนี้ - ตัวอย่าง using System; public class Demo{    public static void Main(string[] args){       Console.WriteLine("Input Redirected? = "+Console.IsInputRedirected);    } } ผลลัพธ์ สิ่งนี

  8. ตรวจสอบว่า HybridDictionary ซิงโครไนซ์ใน C # หรือไม่

    ในการตรวจสอบว่า HybridDictionary มีการซิงโครไนซ์หรือไม่ รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections; using System.Collections.Specialized; public class Demo {    public static void Main(){       HybridDictionary dict1 = new HybridDictionary();   &

  9. ส่งคืนเฉพาะฟิลด์ที่แสดงจำนวนครั้งที่กำหนดโดยใช้ MySQL DISTINCT หรือไม่

    หากต้องการส่งคืนฟิลด์ที่ปรากฏเป็นจำนวนครั้งที่กำหนด ไวยากรณ์จะเป็นดังนี้ − 1order by yourColumnName; ให้เราสร้างตารางก่อน - ); ตกลง ตกลง 0 แถวได้รับผลกระทบ (0.86 วินาที) แทรกระเบียนบางส่วนในตารางโดยใช้คำสั่ง insert - แทรกลงในค่า DemoTable1500 (Jackie); แบบสอบถามตกลง ได้รับผลกระทบ 1 แถว (0.06 วิ

  10. รับจำนวนคู่คีย์/ค่าที่มีอยู่ใน OrderedDictionary ใน C #

    ในการรับจำนวนของคู่คีย์/ค่าที่มีอยู่ใน OrderedDictionary รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections; using System.Collections.Specialized; public class Demo {    public static void Main(){       OrderedDictionary dict = new OrderedDictionary();  

  11. จะรับองค์ประกอบที่สี่ของ Tuple ใน C # ได้อย่างไร

    เพื่อให้ได้องค์ประกอบที่สี่ของทูเปิล รหัสจะเป็นดังนี้ - ตัวอย่าง 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

  12. รับความสูงและความกว้างของหน้าต่างที่ใหญ่ที่สุดของคอนโซลใน C #

    ในการรับความสูงของหน้าต่างที่ใหญ่ที่สุดของ Console โค้ดจะเป็นดังนี้ - ตัวอย่าง using System; public class Demo{    public static void Main(string[] args){       Console.WriteLine("Largest Window Height of the Console = "+Console.LargestWindowHeight);    }

  13. รับ Standard Output และ Standard Error Output Stream ผ่าน Console ใน C#

    ในการรับสตรีมเอาต์พุตมาตรฐานผ่านคอนโซล โค้ดมีดังต่อไปนี้ - ตัวอย่าง using System; public class Demo {    public static void Main(string[] args){       Console.WriteLine("Standard Output Stream = "+Console.Out);    } } ผลลัพธ์ สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี

  14. โครงสร้าง Char ใน C #

    Char Struct ใน C# แสดงถึงอักขระที่เป็นหน่วยโค้ด UTF-16 นี่คือวิธีการบางส่วน - วิธีการ คำอธิบาย ConvertToUtf32(Char, Char) แปลงค่าของคู่ตัวแทนเสมือนที่เข้ารหัส UTF-16 เป็นจุดโค้ด Unicode ConvertToUtf32(String, Int32) แปลงค่าของอักขระที่เข้ารหัส UTF-16 หรือคู่ตัวแทนที่ตำแหน่งที่ระบุในสตริงลงในจุดโค

  15. แปลงคลาสใน C #

    Convert Class มีวิธีการแปลงชนิดข้อมูลฐานเป็นชนิดข้อมูลฐานอื่น เรามาดูตัวอย่างกัน − เมธอด Convert.ToBoolean() ใน C # ใช้เพื่อแปลงค่าที่ระบุเป็นค่าบูลีนที่เทียบเท่า ไวยากรณ์ ต่อไปนี้เป็นไวยากรณ์ - public static bool ToBoolean (string val, IFormatProvider provider); ด้านบน Val เป็นสตริงที่มีค่า True

  16. ตรวจสอบ HybridDictionary สำหรับคีย์เฉพาะใน C #

    ในการตรวจสอบ HybridDictionary สำหรับคีย์ที่ระบุ รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections; using System.Collections.Specialized; public class Demo {    public static void Main(){       HybridDictionary dict = new HybridDictionary(5);     &n

  17. ตรวจสอบว่ามีองค์ประกอบอยู่ใน ArrayList ใน C # หรือไม่

    ในการตรวจสอบว่ามีองค์ประกอบอยู่ใน ArrayList หรือไม่ โค้ดจะเป็นดังนี้ − ตัวอย่าง using System; using System.Collections; public class Demo {    public static void Main(){       ArrayList list = new ArrayList();       list.Add("One");     &nb

  18. แทรกรายการใหม่ใน OrderedDictionary ด้วยคีย์และค่าที่ระบุใน C #

    ในการแทรกรายการใหม่ใน OrderedDictionary ด้วยคีย์และค่าที่ระบุ รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections; using System.Collections.Specialized; public class Demo {    public static void Main(){       OrderedDictionary dict = new OrderedDictionary(); &

  19. แทรกองค์ประกอบลงในคอลเลกชันที่ดัชนีที่ระบุใน C #

    ในการแทรกองค์ประกอบลงในคอลเล็กชันที่ดัชนีที่ระบุ รหัสจะเป็นดังนี้ - ตัวอย่าง using System; using System.Collections.ObjectModel; public class Demo {    public static void Main(){       Collection<string> col = new Collection<string>();       col.Ad

Total 2668 -คอมพิวเตอร์  FirstPage PreviousPage NextPage LastPage CurrentPage:115/134  20-คอมพิวเตอร์/Page Goto:1 109 110 111 112 113 114 115 116 117 118 119 120 121