วิธี Uri.Equals() ใน C# จะเปรียบเทียบอินสแตนซ์ Uri สองตัวเพื่อความเท่าเทียมกัน
ไวยากรณ์
ต่อไปนี้เป็นไวยากรณ์ -
public override bool Equals (object comparand);
ด้านบน การเปรียบเทียบพารามิเตอร์คืออินสแตนซ์ Uri หรือตัวระบุ URI เพื่อเปรียบเทียบกับอินสแตนซ์ปัจจุบัน
ตัวอย่าง
ให้เราดูตัวอย่างการใช้เมธอด Uri.Equals() -
using System; public class Demo { public static void Main(){ Uri newURI1 = new Uri("https://www.tutorialspoint.com/index.htm"); Console.WriteLine("URI = "+newURI1); Uri newURI2 = new Uri("https://www.tutorialspoint.com/index.htm"); Console.WriteLine("URI = "+newURI2); if(newURI1.Equals(newURI2)) Console.WriteLine("Both the URIs are equal!"); else Console.WriteLine("Both the URIs aren't equal!"); } }
ผลลัพธ์
สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -
URI = https://www.tutorialspoint.com/index.htm URI = https://www.tutorialspoint.com/index.htm Both the URIs aren't equal!
ตัวอย่าง
ให้เราดูตัวอย่างอื่นเพื่อนำเมธอด Uri.Equals() ไปใช้ −
using System; public class Demo { public static void Main(){ Uri newURI1 = new Uri("https://www.tutorialspoint.com/index.htm"); Console.WriteLine("URI = "+newURI1); Uri newURI2 = new Uri("https://www.tutorialspoint.com/"); Console.WriteLine("URI = "+newURI2); if(newURI1.Equals(newURI2)) Console.WriteLine("Both the URIs are equal!"); else Console.WriteLine("Both the URIs aren't equal!"); } }
ผลลัพธ์
สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -
URI = https://www.tutorialspoint.com/index.htm URI = https://www.tutorialspoint.com/ Both the URIs aren't equal!