C#의 Uri.Equals() 메서드는 두 개의 Uri 인스턴스가 같은지 비교합니다.
구문
다음은 구문입니다 -
public override bool Equals (object comparand);
위의 매개변수 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!