C#| Uri.GetType()方法与示例

Uri.GetType() 方法

Uri.GetType()方法是用于返回当前对象类型的替代方法。

语法:

    Type Uri.GetType();

Parameter(s):

  • 它不接受任何参数。

返回值:

该方法的返回类型为Type,它返回当前对象的类型。

举例说明方法的例子Uri.GetType()

using System;

class UriExample
{
    //程序入口
    static public void Main()
    {
        // 创建一个Uri对象
        Uri Address;

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

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

输出结果

System.Uri
Press any key to continue . . .