Type.IsClass 属性
获取一个值,通过该值指示 Type 是否是一个类;即,不是值类型或接口。
**命名空间:**System
**程序集:**mscorlib(在 mscorlib.dll 中)
语法
声明
Public ReadOnly Property IsClass As Boolean
用法
Dim instance As Type
Dim value As Boolean
value = instance.IsClass
public bool IsClass { get; }
public:
virtual property bool IsClass {
bool get () sealed;
}
/** @property */
public final boolean get_IsClass ()
public final function get IsClass () : boolean
属性值
如果 Type 是类,则为 true;否则为 false。
备注
对于表示 Enum 和 ValueType 的 Type,此属性 (Property) 返回 true。
ClassSemanticsMask 将类型声明区分为类、接口或值类型。
如果当前 Type 表示构造泛型类型,此属性 (Property) 将在泛型类型定义为类定义(即没有定义接口或值类型)时返回 true。
如果当前 Type 表示泛型类型或泛型方法的定义中的类型参数,则此属性始终返回 false。
此属性 (Property) 为只读。
示例
下面的示例创建类型的实例,并指示该类型是否是类。
Imports System
Imports System.Reflection
Imports Microsoft.VisualBasic
Public Class MyDemoClass
End Class 'MyDemoClass
Public Class MyTypeClass
Public Shared Sub Main()
Try
Dim myType As Type = GetType(MyDemoClass)
' Get and display the 'IsClass' property of the 'MyDemoClass' instance.
Console.WriteLine(ControlChars.Cr + "Is the specified type a class? {0}.", myType.IsClass.ToString())
Catch e As Exception
Console.WriteLine(ControlChars.Cr + "An exception occurred: {0}.", e.Message.ToString())
End Try
End Sub 'Main
End Class 'MyTypeClass
using System;
using System.Reflection;
public class MyDemoClass
{
}
public class MyTypeClass
{
public static void Main(string[] args)
{
try
{
Type myType = typeof(MyDemoClass);
// Get and display the 'IsClass' property of the 'MyDemoClass' instance.
Console.WriteLine("\nIs the specified type a class? {0}.", myType.IsClass);
}
catch(Exception e)
{
Console.WriteLine("\nAn exception occurred: {0}." ,e.Message);
}
}
}
using namespace System;
using namespace System::Reflection;
public ref class MyDemoClass{};
int main()
{
try
{
Type^ myType = Type::GetType( "MyDemoClass" );
// Get and display the 'IsClass' property of the 'MyDemoClass' instance.
Console::WriteLine( "\nIs the specified type a class? {0}.", myType->IsClass );
}
catch ( Exception^ e )
{
Console::WriteLine( "\nAn exception occurred: {0}.", e->Message );
}
}
import System.*;
import System.Reflection.*;
public class MyDemoClass
{
} //MyDemoClass
public class MyTypeClass
{
public static void main(String[] args)
{
try {
Type myType = Type.GetType("MyDemoClass");
// Get and display the 'IsClass' property of the
// 'MyDemoClass' instance.
Console.WriteLine("\nIs the specified type a class? {0}.", System.
Convert.ToString(myType.get_IsClass()));
}
catch (System.Exception e) {
Console.WriteLine("\nAn exception occurred: {0}.", e.get_Message());
}
} //main
} //MyTypeClass
平台
Windows 98、Windows 2000 SP4、Windows CE、Windows Millennium Edition、Windows Mobile for Pocket PC、Windows Mobile for Smartphone、Windows Server 2003、Windows XP Media Center Edition、Windows XP Professional x64 Edition、Windows XP SP2、Windows XP Starter Edition
.NET Framework 并不是对每个平台的所有版本都提供支持。有关受支持版本的列表,请参见系统要求。
版本信息
.NET Framework
受以下版本支持:2.0、1.1、1.0
.NET Compact Framework
受以下版本支持:2.0、1.0
请参见
参考
Type 类
Type 成员
System 命名空间
TypeAttributes
IsInterface
IsValueType