CodeTypeReferenceExpression Class
.NET Framework 2.0
Represents a reference to a data type.
Namespace: System.CodeDom
Assembly: System (in system.dll)
Assembly: System (in system.dll)
'Declaration <SerializableAttribute> _ <ClassInterfaceAttribute(ClassInterfaceType.AutoDispatch)> _ <ComVisibleAttribute(True)> _ Public Class CodeTypeReferenceExpression Inherits CodeExpression 'Usage Dim instance As CodeTypeReferenceExpression
/** @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
Not applicable.
CodeTypeReferenceExpression can be used to reference a particular data type.
The Type property specifies the data type to reference.
The following example demonstrates use of a CodeTypeReferenceExpression to represent a reference to a type.
' 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 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
System.CodeDom.CodeObject
System.CodeDom.CodeExpression
System.CodeDom.CodeTypeReferenceExpression
Windows 98, Windows Server 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
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: