Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / CompMod / System / CodeDOM / CodeVariableReferenceExpression.cs / 1 / CodeVariableReferenceExpression.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.CodeDom { using System.Diagnostics; using System; using Microsoft.Win32; using System.Collections; using System.Runtime.InteropServices; ////// [ ClassInterface(ClassInterfaceType.AutoDispatch), ComVisible(true), Serializable, ] public class CodeVariableReferenceExpression : CodeExpression { private string variableName; ////// Represents a reference to a field. /// ////// public CodeVariableReferenceExpression() { } ////// Initializes a new instance of ///. /// /// public CodeVariableReferenceExpression(string variableName) { this.variableName = variableName; } ////// Initializes a new instance of ///. /// /// public string VariableName { get { return (variableName == null) ? string.Empty : variableName; } set { variableName = value; } } } }[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DocumentOutline.cs
- PointIndependentAnimationStorage.cs
- EastAsianLunisolarCalendar.cs
- HwndHostAutomationPeer.cs
- RegexStringValidatorAttribute.cs
- DiscardableAttribute.cs
- ApplyTemplatesAction.cs
- AudioFormatConverter.cs
- EventListener.cs
- XmlSerializerAssemblyAttribute.cs
- StringSource.cs
- ButtonAutomationPeer.cs
- UnsettableComboBox.cs
- sqlstateclientmanager.cs
- processwaithandle.cs
- DoubleLinkList.cs
- XPathDocument.cs
- ToolBarButtonClickEvent.cs
- BasicExpressionVisitor.cs
- Int32Animation.cs
- PassportPrincipal.cs
- OdbcPermission.cs
- DbConvert.cs
- Int32Converter.cs
- GeneralTransform3DGroup.cs
- PathSegmentCollection.cs
- COM2EnumConverter.cs
- TreeViewBindingsEditor.cs
- GridViewDeletedEventArgs.cs
- BindingMemberInfo.cs
- GenericEnumConverter.cs
- TextPatternIdentifiers.cs
- OSEnvironmentHelper.cs
- PrivateFontCollection.cs
- QuestionEventArgs.cs
- ExpressionVisitor.cs
- AdapterUtil.cs
- AsymmetricCryptoHandle.cs
- BaseCollection.cs
- SignedXml.cs
- SessionIDManager.cs
- TextBoxDesigner.cs
- View.cs
- RowBinding.cs
- Flowchart.cs
- UserControlBuildProvider.cs
- ParseNumbers.cs
- SynchronousChannelMergeEnumerator.cs
- WebAdminConfigurationHelper.cs
- DataGridViewCellStyleChangedEventArgs.cs
- TemplateContent.cs
- CodeDOMUtility.cs
- DataGridViewRowErrorTextNeededEventArgs.cs
- MatrixTransform3D.cs
- SQLBytesStorage.cs
- WebControl.cs
- OleDbDataReader.cs
- Size3D.cs
- ReadOnlyDataSource.cs
- RegexTypeEditor.cs
- EventProperty.cs
- BaseCollection.cs
- SafeFileHandle.cs
- XmlSchemaChoice.cs
- ObfuscateAssemblyAttribute.cs
- TaskFormBase.cs
- VersionUtil.cs
- Int32RectConverter.cs
- DynamicControlParameter.cs
- FilterException.cs
- AddInBase.cs
- XmlLoader.cs
- PolicyUtility.cs
- XmlTextReaderImplHelpers.cs
- TileModeValidation.cs
- GeneralTransform2DTo3D.cs
- ArrayEditor.cs
- AlphaSortedEnumConverter.cs
- TableAutomationPeer.cs
- TrackingDataItemValue.cs
- ObjectStateEntryDbDataRecord.cs
- FileReservationCollection.cs
- TemplateBindingExpressionConverter.cs
- PeerApplication.cs
- XmlFileEditor.cs
- FontCacheUtil.cs
- CreateUserErrorEventArgs.cs
- WindowAutomationPeer.cs
- PresentationAppDomainManager.cs
- Identifier.cs
- ResourceReferenceExpression.cs
- SingleTagSectionHandler.cs
- ProgressPage.cs
- Pair.cs
- TreeViewImageKeyConverter.cs
- XmlnsDefinitionAttribute.cs
- ToggleButton.cs
- RolePrincipal.cs
- BufferedGenericXmlSecurityToken.cs
- x509utils.cs