CodeTypeReferenceExpression クラス
データ型への参照を表します。
名前空間: System.CodeDom
アセンブリ: System (system.dll 内)
構文
'宣言
<SerializableAttribute> _
<ClassInterfaceAttribute(ClassInterfaceType.AutoDispatch)> _
<ComVisibleAttribute(True)> _
Public Class CodeTypeReferenceExpression
Inherits CodeExpression
'使用
Dim instance As CodeTypeReferenceExpression
[SerializableAttribute]
[ClassInterfaceAttribute(ClassInterfaceType.AutoDispatch)]
[ComVisibleAttribute(true)]
public class CodeTypeReferenceExpression : CodeExpression
[SerializableAttribute]
[ClassInterfaceAttribute(ClassInterfaceType::AutoDispatch)]
[ComVisibleAttribute(true)]
public ref class CodeTypeReferenceExpression : public CodeExpression
/** @attribute SerializableAttribute() */
/** @attribute ClassInterfaceAttribute(ClassInterfaceType.AutoDispatch) */
/** @attribute ComVisibleAttribute(true) */
public class CodeTypeReferenceExpression extends CodeExpression
SerializableAttribute
ClassInterfaceAttribute(ClassInterfaceType.AutoDispatch)
ComVisibleAttribute(true)
public class CodeTypeReferenceExpression extends CodeExpression
解説
CodeTypeReferenceExpression を使用して、特定のデータ型を参照できます。
Type プロパティは、参照するデータ型を指定します。
使用例
CodeTypeReferenceExpression を使用して型への参照を表す例を次に示します。
' Creates an expression referencing the System.DateTime type.
Dim typeRef2 As New CodeTypeReferenceExpression("System.DateTime")
' A Visual Basic code generator produces the following source code for the preceeding example code:
' System.DateTime
// Creates an expression referencing the System.DateTime type.
CodeTypeReferenceExpression typeRef2 = new CodeTypeReferenceExpression("System.DateTime");
// A C# code generator produces the following source code for the preceeding example code:
// System.DateTime
// Creates an expression referencing the System.DateTime type.
CodeTypeReferenceExpression^ typeRef2 = gcnew CodeTypeReferenceExpression( "System.DateTime" );
// A C# code generator produces the following source code for the preceeding example code:
// System.DateTime
// Creates an expression referencing the System.DateTime type.
CodeTypeReferenceExpression typeRef2 = new
CodeTypeReferenceExpression("System.DateTime");
// A VJ# code generator produces the following source code
// for the preceeding example code:
// System.DateTime
継承階層
System.Object
System.CodeDom.CodeObject
System.CodeDom.CodeExpression
System.CodeDom.CodeTypeReferenceExpression
スレッド セーフ
この型の public static (Visual Basic では Shared) メンバはすべて、スレッド セーフです。インスタンス メンバの場合は、スレッド セーフであるとは限りません。
プラットフォーム
Windows 98, Windows 2000 SP4, Windows Millennium Edition, 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