当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C# Uri.Equals()用法及代码示例


Uri.Equals() 方法

Uri.Equals() 方法是一种覆盖方法,用于检查指定引用与当前对象的相等性。如果两者相等则返回真,否则返回假。

用法:

    bool Uri.Equals(Uri obj);

参数:

  • Uri obj– 表示要与当前对象一起检查的指定对象。

返回值:

这个方法的返回类型是Boolean, 如果指定的对象或引用等于当前对象,则返回布尔值,则返回 true,否则返回 false。

示例演示 Uri.Equals() 方法的示例

using System;

class UriExample
{
    //Entry point of Program
    static public void Main()
    {
        Uri domainUri1;
        Uri domainUri2;
        Uri domainUri3;

        domainUri1 = new Uri("https://www.includehelp.com/index.html");
        domainUri2 = new Uri("https://www.includehelp.com/index.html");
        domainUri3 = new Uri("https://www.includehelp.com/index_1.html");

        if (domainUri1.Equals(domainUri1) == true)
            Console.WriteLine("Both are equal");
        else
            Console.WriteLine("Both are not equal");

        if (domainUri1.Equals(domainUri2) == true)
            Console.WriteLine("Both are equal");
        else
            Console.WriteLine("Both are not equal");

        if (domainUri1.Equals(domainUri3) == true)
            Console.WriteLine("Both are equal");
        else
            Console.WriteLine("Both are not equal");
    }
}

输出

Both are equal
Both are equal
Both are not equal


相关用法


注:本文由纯净天空筛选整理自 C# | Uri.Equals() Method with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。