e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
61 lines
1.8 KiB
C#
61 lines
1.8 KiB
C#
//------------------------------------------------------------------------------
|
|
// <copyright file="CodeVariableReferenceExpression.cs" company="Microsoft">
|
|
//
|
|
// <OWNER>[....]</OWNER>
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// </copyright>
|
|
//------------------------------------------------------------------------------
|
|
|
|
namespace System.CodeDom {
|
|
|
|
using System.Diagnostics;
|
|
using System;
|
|
using Microsoft.Win32;
|
|
using System.Collections;
|
|
using System.Runtime.InteropServices;
|
|
|
|
/// <devdoc>
|
|
/// <para>
|
|
/// Represents a reference to a field.
|
|
/// </para>
|
|
/// </devdoc>
|
|
[
|
|
ClassInterface(ClassInterfaceType.AutoDispatch),
|
|
ComVisible(true),
|
|
Serializable,
|
|
]
|
|
public class CodeVariableReferenceExpression : CodeExpression {
|
|
private string variableName;
|
|
|
|
/// <devdoc>
|
|
/// <para>
|
|
/// Initializes a new instance of <see cref='System.CodeDom.CodeVariableReferenceExpression'/>.
|
|
/// </para>
|
|
/// </devdoc>
|
|
public CodeVariableReferenceExpression() {
|
|
}
|
|
|
|
/// <devdoc>
|
|
/// <para>
|
|
/// Initializes a new instance of <see cref='System.CodeDom.CodeArgumentReferenceExpression'/>.
|
|
/// </para>
|
|
/// </devdoc>
|
|
public CodeVariableReferenceExpression(string variableName) {
|
|
this.variableName = variableName;
|
|
}
|
|
|
|
|
|
/// <devdoc>
|
|
/// <para>[To be supplied.]</para>
|
|
/// </devdoc>
|
|
public string VariableName {
|
|
get {
|
|
return (variableName == null) ? string.Empty : variableName;
|
|
}
|
|
set {
|
|
variableName = value;
|
|
}
|
|
}
|
|
}
|
|
}
|