Type.IsInstanceOfType(Object) 方法

定义

确定指定的对象是否是当前 Type 的实例。

public virtual bool IsInstanceOfType(object? o);
public virtual bool IsInstanceOfType(object o);

参数

o
Object

要与当前类型进行比较的对象。

返回

如果满足下列任一条件,则为 true:当前 Type 位于由 o 表示的对象的继承层次结构中;当前 Typeo 实现的接口。 如果不属于其中任一种情况,onull,或者当前 Type 为开放式泛型类型(即 ContainsGenericParameters 返回 true),则为 false

实现

示例

下面的示例演示 IsInstanceOfType 方法的用法。

using System;

public interface IExample {}

public class BaseClass : IExample {}

public class DerivedClass : BaseClass {}

public class Example
{
    public static void Main()
    {
        var interfaceType = typeof(IExample);
        var base1 = new BaseClass();
        var base1Type = base1.GetType();
        var derived1 = new DerivedClass();
        var derived1Type = derived1.GetType();
        int[] arr = new int[11];

        Console.WriteLine("Is int[] an instance of the Array class? {0}.",
                           typeof(Array).IsInstanceOfType(arr));
        Console.WriteLine("Is base1 an instance of BaseClass? {0}.",
                          base1Type.IsInstanceOfType(base1));
        Console.WriteLine("Is derived1 an instance of BaseClass? {0}.",
                          base1Type.IsInstanceOfType(derived1));
        Console.WriteLine("Is base1 an instance of IExample? {0}.",
                          interfaceType.IsInstanceOfType(base1));
        Console.WriteLine("Is derived1 an instance of IExample? {0}.",
                          interfaceType.IsInstanceOfType(derived1));
    }
}
// The example displays the following output:
//    Is int[] an instance of the Array class? True.
//    Is base1 an instance of BaseClass? True.
//    Is derived1 an instance of BaseClass? True.
//    Is base1 an instance of IExample? True.
//    Is derived1 an instance of IExample? True.

注解

派生类可以重写此方法。

备注

构造类型不是其泛型类型定义的实例。 也就是说, MyGenericList<int> Visual Basic) MyGenericList(Of Integer) 中的 (不是 Visual Basic) 中 (MyGenericList(Of T)的实例MyGenericList<T>

适用于

产品 版本
.NET Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1