System.Type.IsInstanceOfType 方法

方法描述

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

语法定义(C# System.Type.IsInstanceOfType 方法 的用法)

public virtual bool IsInstanceOfType(
	Object o
)

参数/返回值

参数值/返回值 参数类型/返回类型 参数描述/返回描述
o System-Object 要与当前类型进行比较的对象。
返回值 System.Boolean 如果满足下列任一条件,则为 true:当前 Type 位于由 o 表示的对象的继承层次结构中;当前 Type 是 o 支持的接口。 如果不属于其中任一种情况,或者 o 为 null,或者当前 Type 为开放式泛型类型(即 ContainsGenericParameters 返回 true),则为 false。

提示和注释

此方法可由派生类重写。

注意

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

System.Type.IsInstanceOfType 方法例子

下面的示例说明 IsInstanceOfType 方法的用法。

using System;
public interface IMyIfc {}
public class MyClass : IMyIfc {}
public class MyDerivedClass : MyClass {}
class IsInstanceTest 
{
    public static void Main() 
    {
        Type imyifcType=typeof(IMyIfc);
        MyClass mc = new MyClass();
        Type mcType = mc.GetType();
        MyClass mdc = new MyDerivedClass();
        Type mdcType = mdc.GetType();
        int [] array  = new int [10];
        Type arrayType = typeof(Array);
        Console.WriteLine("Is int[] an instance of the Array class? {0}.", arrayType.IsInstanceOfType(array));
        Console.WriteLine("Is myclass an instance of MyClass? {0}.", mcType.IsInstanceOfType(mc));
        Console.WriteLine("Is myderivedclass an instance of MyClass? {0}.", mcType.IsInstanceOfType(mdc));
        Console.WriteLine("Is myclass an instance of IMyIfc? {0}.", imyifcType.IsInstanceOfType(mc));
        Console.WriteLine("Is myderivedclass an instance of IMyIfc? {0}.", imyifcType.IsInstanceOfType(mdc));
    }
}

异常

异常 异常描述

命名空间

namespace: System

程序集: mscorlib(在 mscorlib.dll 中)

版本信息

.NET Framework 受以下版本支持:4、3.5、3.0、2.0、1.1、1.0 .NET Framework Client Profile 受以下版本支持:4、3.5 SP1 受以下版本支持:

适用平台

Windows 7, Windows Vista SP1 或更高版本, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008(不支持服务器核心), Windows Server 2008 R2(支持 SP1 或更高版本的服务器核心), Windows Server 2003 SP2 .NET Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求。