| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- //
- // System.CodeDom CodeVariableReferenceExpression Class implementation
- //
- // Author:
- // Daniel Stodden ([email protected])
- //
- // (C) 2001 Ximian, Inc.
- //
- using System.Runtime.InteropServices;
- namespace System.CodeDom
- {
- [Serializable]
- [ClassInterface(ClassInterfaceType.AutoDispatch)]
- [ComVisible(true)]
- public class CodeVariableReferenceExpression
- : CodeExpression
- {
- private string variableName;
- //
- // Constructors
- //
- public CodeVariableReferenceExpression()
- {
- }
- public CodeVariableReferenceExpression( string variableName )
- {
- this.variableName = variableName;
- }
- //
- // Properties
- //
- public string VariableName {
- get {
- return variableName;
- }
- set {
- variableName = value;
- }
- }
- }
- }
|