CodeVariableReferenceExpression Class
.NET Framework 3.0
Represents a reference to a local variable.
Namespace: System.CodeDom
Assembly: System (in system.dll)
Assembly: System (in system.dll)
[SerializableAttribute] [ClassInterfaceAttribute(ClassInterfaceType.AutoDispatch)] [ComVisibleAttribute(true)] public class CodeVariableReferenceExpression : CodeExpression
/** @attribute SerializableAttribute() */ /** @attribute ClassInterfaceAttribute(ClassInterfaceType.AutoDispatch) */ /** @attribute ComVisibleAttribute(true) */ public class CodeVariableReferenceExpression extends CodeExpression
SerializableAttribute ClassInterfaceAttribute(ClassInterfaceType.AutoDispatch) ComVisibleAttribute(true) public class CodeVariableReferenceExpression extends CodeExpression
Not applicable.
CodeVariableReferenceExpression can be used to represent a reference to a local variable.
The VariableName property specifies the name of the local variable to reference.
Use CodeFieldReferenceExpression to reference a field. Use CodePropertyReferenceExpression to reference a property. Use CodeEventReferenceExpression to reference an event.
The following example code demonstrates use of a CodeVariableReferenceExpression to refer to a local variable.
CodeVariableReferenceExpression variableRef1 =
new CodeVariableReferenceExpression("TestVariable");
// A C# code generator produces the following source code for the preceeding example code:
// TestVariable
CodeVariableReferenceExpression variableRef1 = new
CodeVariableReferenceExpression("TestVariable");
// A VJ# code generator produces the following source code for
// the preceeding example code:
// TestVariable
System.Object
System.CodeDom.CodeObject
System.CodeDom.CodeExpression
System.CodeDom.CodeVariableReferenceExpression
System.CodeDom.CodeObject
System.CodeDom.CodeExpression
System.CodeDom.CodeVariableReferenceExpression
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: