หน้าแรก
หน้าแรก
วิธี MathF.Atan2() ใน C# คืนค่ามุมที่มีแทนเจนต์เป็นผลหารของเลขทศนิยมสองตัว ไวยากรณ์ ต่อไปนี้เป็นไวยากรณ์ - public static float Atan2 (float val1, float val2); ด้านบน val1 คือพิกัด x ของจุด ในขณะที่ val2 คือพิกัด y ตัวอย่าง ให้เรามาดูตัวอย่างการใช้งาน MathF.Atan2() method − using System; public cl
เมธอด MathF.Acosh() ใน C# ใช้เพื่อคืนค่าไฮเปอร์โบลิก arc-cosine ของค่าทศนิยม ไวยากรณ์ ต่อไปนี้เป็นไวยากรณ์ - public static float Acosh (float val); ด้านบน Val คือเลขทศนิยม ตัวอย่าง ให้เรามาดูตัวอย่างการใช้งาน MathF.Acosh() method − using System; public class Demo { public static void
เมธอด MathF.Asin() ใน C# ใช้เพื่อคืนค่ามุมที่ไซน์เป็นอาร์กิวเมนต์ค่าทศนิยม ไวยากรณ์ ต่อไปนี้เป็นไวยากรณ์ - public static float Asin (float val); ด้านบน Val คือค่าทศนิยม ตัวอย่าง ให้เรามาดูตัวอย่างการใช้งาน MathF.Asin() method − using System; public class Demo { public static void Mai
เมธอด MathF.Asinh() ใน C# ใช้เพื่อคืนค่าไฮเปอร์โบลิก arc-sine ของค่าทศนิยม ไวยากรณ์ ต่อไปนี้เป็นไวยากรณ์ - public static float Asinh (float val); ตัวอย่าง ให้เรามาดูตัวอย่างการใช้งาน MathF.Asinh() method − using System; public class Demo { public static void Main(){ &nbs
เมธอด MathF.Atan() ใน C# ใช้เพื่อคืนค่ามุมที่มีให้แทนเจนต์เป็นอาร์กิวเมนต์ค่าทศนิยม ไวยากรณ์ ต่อไปนี้เป็นไวยากรณ์ - public static float Atan (float val); ด้านบน Val คือค่าทศนิยม ตัวอย่าง ให้เรามาดูตัวอย่างการใช้งาน MathF.Atan() method − using System; public class Demo { public static
วิธี Char.IsDigit() ใน C# ระบุว่าอักขระ Unicode ที่ระบุถูกจัดประเภทเป็นตัวเลขทศนิยมหรือไม่ ไวยากรณ์ ต่อไปนี้เป็นไวยากรณ์ - public static bool IsDigit (char ch); ด้านบน พารามิเตอร์ ch คืออักขระ Unicode ที่จะประเมิน ตัวอย่าง ให้เราดูตัวอย่างการใช้งานวิธี Char.IsDigit() - using System; public class
Char.IsHighSurrogate() วิธีการใน C# ระบุว่าวัตถุ Char ที่ตำแหน่งที่ระบุในสตริงเป็นตัวแทนที่สูงหรือไม่ ไวยากรณ์ ต่อไปนี้เป็นไวยากรณ์ - public static bool IsHighSurrogate (string str, int index); ด้านบน str คือสตริง ในขณะที่ดัชนีคือตำแหน่งของอักขระที่จะประเมินใน str ตัวอย่าง ให้เราดูตัวอย่างการใช้ว
วิธี Char.IsLetter() ใน C# ใช้เพื่อระบุว่าอักขระ Unicode ที่ระบุถูกจัดประเภทเป็นตัวอักษร Unicode หรือไม่ ไวยากรณ์ ต่อไปนี้เป็นไวยากรณ์ - public static bool IsLetter (char ch); ด้านบน พารามิเตอร์ ch คืออักขระ Unicode ที่จะประเมิน ตัวอย่าง ให้เราดูตัวอย่างการใช้วิธี Char.IsLetter() - using System;
หากต้องการเปลี่ยน BufferWidth ของ Console ให้ใช้คุณสมบัติ Console.BufferWidth ตัวอย่าง เรามาดูตัวอย่างกัน − using System; class Demo { public static void Main (string[] args){ Console.BufferHeight = 200; Console.WriteLine("Buffer Height =
หากต้องการเปลี่ยนสีพื้นหน้าของข้อความ ให้ใช้คุณสมบัติ Console.ForegroundColor ใน C# ตัวอย่าง เรามาดูตัวอย่างกัน − using System; class Demo { public static void Main (string[] args) { Console.BackgroundColor = ConsoleColor.Blue; Console.WriteLin
หากต้องการเปลี่ยน CursorLeft ของ Console ใน C# ให้ใช้คุณสมบัติ Console.CursorLeft ตัวอย่าง เรามาดูตัวอย่างกัน − using System; class Demo { public static void Main (string[] args) { Console.BackgroundColor = ConsoleColor.Blue; Console.WriteLine(
หากต้องการเปลี่ยน CursorSize ของ Console ใน C# ให้ใช้คุณสมบัติ Console.CursorSize ใน C# ตัวอย่าง เรามาดูตัวอย่างกัน − using System; class Demo { public static void Main (string[] args) { Console.BackgroundColor = ConsoleColor.Blue; Console.Writ
วิธี MathF.Pow() ใน C# ใช้ในการคำนวณจำนวนยกกำลังของตัวเลขอื่น ไวยากรณ์ ต่อไปนี้เป็นไวยากรณ์ - public static float Pow (float val1, float val2); ด้านบน val1 คือจำนวนทศนิยมที่ยกกำลัง พารามิเตอร์ val2 คือกำลังหรือเลขชี้กำลัง ตัวอย่าง ให้เรามาดูตัวอย่างการใช้งาน MathF.Pow() method − using System; pub
วิธี Char.IsNumber() ใน C# ใช้เพื่อระบุว่าอักขระ Unicode ที่ระบุถูกจัดประเภทเป็นตัวเลขหรือไม่ ไวยากรณ์ ต่อไปนี้เป็นไวยากรณ์ - public static bool IsNumber (char ch); ด้านบน พารามิเตอร์ ch คืออักขระ Unicode ที่จะประเมิน ตัวอย่าง ให้เราดูตัวอย่างการใช้วิธี Char.IsNumber() - using System; public clas
เมธอด MathF.Cbrt() ใน C# ใช้เพื่อคืนค่ารากที่สามของค่าทศนิยม ไวยากรณ์ ต่อไปนี้เป็นไวยากรณ์ - public static float Cbrt (float val); ตัวอย่าง ให้เรามาดูตัวอย่างการใช้งาน MathF.Cbrt() method − using System; class Demo { public static void Main(){ float val1 = 64f; &n
เมธอด MathF.Ceiling() ใน C# ใช้เพื่อค้นหาจำนวนเต็มที่น้อยที่สุดที่มากกว่าหรือเท่ากับค่าทศนิยมในอาร์กิวเมนต์ ไวยากรณ์ ต่อไปนี้เป็นไวยากรณ์ - public static float Ceiling (float val); ด้านบน Val คือค่าทศนิยม ตัวอย่าง ให้เรามาดูตัวอย่างการใช้งาน MathF.Ceiling() method − using System; class Demo { &nb
เมธอด Uri.IsBaseOf() ใน C# ใช้เพื่อระบุว่าอินสแตนซ์ Uri ปัจจุบันเป็นฐานของอินสแตนซ์ Uri ที่ระบุหรือไม่ ไวยากรณ์ ต่อไปนี้เป็นไวยากรณ์ - public bool IsBaseOf (Uri uri); ด้านบน พารามิเตอร์ Uri คืออินสแตนซ์ Uri ที่ระบุเพื่อทดสอบ ตัวอย่าง ให้เราดูตัวอย่างการใช้เมธอด Uri.IsBaseOf() - using System; publ
วิธี Uri.IsHexEncoding() ใน C# กำหนดว่าอักขระในสตริงเข้ารหัสเป็นเลขฐานสิบหกหรือไม่ ไวยากรณ์ ต่อไปนี้เป็นไวยากรณ์ - public static bool IsHexEncoding (string pattern, int index); ด้านบน พารามิเตอร์รูปแบบคือสตริงที่จะตรวจสอบ ในขณะที่ดัชนีคือตำแหน่งในรูปแบบเพื่อตรวจสอบการเข้ารหัสฐานสิบหก ตัวอย่าง ให้
เมธอด Uri.IsWellFormedOriginalString() ใน C# ระบุว่าสตริงที่ใช้สร้าง Uri นี้มีรูปแบบที่ดีหรือไม่ และไม่จำเป็นต้องหลีกหนีอีกต่อไป ไวยากรณ์ ต่อไปนี้เป็นไวยากรณ์ - public bool IsWellFormedOriginalString (); ตัวอย่าง ให้เราดูตัวอย่างการใช้เมธอด Uri.IsWellFormedOriginalString() - using System; public c
โครงสร้าง UInt64 แสดงถึงจำนวนเต็ม 64 บิตที่ไม่ได้ลงนาม ประเภทค่า UInt64 แสดงถึงจำนวนเต็มที่ไม่ได้ลงนามโดยมีค่าตั้งแต่ 0 ถึง 18,446,744,073,709,551,615 ให้เราดูตัวอย่างของวิธีการ UInt64 Struct - UInt64.CompareTo() เมธอด UInt64.CompareTo() ใน C# ใช้เพื่อเปรียบเทียบอินสแตนซ์ปัจจุบันกับอ็อบเจ็กต์ที่ระ