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


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


Uri.GetType() 方法

Uri.GetType() 方法是一个覆盖方法,用于返回当前对象的类型。

用法:

    Type Uri.GetType();

参数:

  • 它不接受任何参数。

返回值:

这个方法的返回类型是Type,它返回当前对象的类型。

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

using System;

class UriExample
{
    //Entry point of Program
    static public void Main()
    {
        // Create an object of Uri
        Uri Address;

        Address = new Uri("https://www.includehelp.com/index.html#search");

        Console.WriteLine(Address.GetType());
    }
}

输出

System.Uri
Press any key to continue . . .


相关用法


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