C#
 Computer >> コンピューター >  >> プログラミング >> C#

C#のUri.Equals(Object)メソッド


C#のUri.Equals()メソッドは、2つの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!

  1. C#のDateTime.Equals()メソッド

    C#のDateTime.Equals()メソッドを使用して、2つのDateTimeオブジェクトまたはインスタンスが等しいかどうかを確認します。両方が等しい場合はTRUEが返され、そうでない場合はFALSEが戻り値になります。 構文 以下は構文です- public static bool Equals (DateTime date1, DateTime date2); 例 DateTime.Equals()メソッドを実装する例を見てみましょう- using System; public class Demo {    public static void Main() {

  2. C#のType.Equals()メソッド

    C#のType.Equals()メソッドは、現在のTypeの基になるシステムタイプが、指定されたオブジェクトまたはTypeの基になるシステムタイプと同じであるかどうかを判断します。 構文 public virtual bool Equals (Type o); public override bool Equals (object o); 上記のパラメータは、基礎となるシステムタイプが現在のタイプの基礎となるシステムタイプと比較されるオブジェクトです。 Type.Equals()メソッドを実装する例を見てみましょう- using System; public class Demo { &n