Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / CodeDOM / CodeVariableReferenceExpression.cs / 1305376 / CodeVariableReferenceExpression.cs
//------------------------------------------------------------------------------ //// // //----------------------------------------------------------------------------- namespace System.CodeDom { using System.Diagnostics; using System; using Microsoft.Win32; using System.Collections; using System.Runtime.InteropServices; ///[....] // Copyright (c) Microsoft Corporation. All rights reserved. ///// [ 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; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ProfilePropertySettings.cs
- DataGridViewUtilities.cs
- ArraySegment.cs
- ColorConverter.cs
- WCFBuildProvider.cs
- PenThreadWorker.cs
- TlsnegoTokenProvider.cs
- StyleHelper.cs
- Dispatcher.cs
- Preprocessor.cs
- SafeLibraryHandle.cs
- HttpClientChannel.cs
- ManualResetEvent.cs
- PropertyEmitterBase.cs
- TreeNodeStyle.cs
- CompilationSection.cs
- ArgumentOutOfRangeException.cs
- EventPropertyMap.cs
- CollectionViewGroupRoot.cs
- DesignTimeSiteMapProvider.cs
- _HTTPDateParse.cs
- Pool.cs
- QueryContinueDragEvent.cs
- DesignerLabelAdapter.cs
- RootProfilePropertySettingsCollection.cs
- StateDesignerConnector.cs
- Trigger.cs
- SHA1CryptoServiceProvider.cs
- ServicePointManagerElement.cs
- SamlAttribute.cs
- CompilerGlobalScopeAttribute.cs
- ClientData.cs
- IgnorePropertiesAttribute.cs
- AvtEvent.cs
- DeclarativeConditionsCollection.cs
- mactripleDES.cs
- MemberInfoSerializationHolder.cs
- MergeLocalizationDirectives.cs
- SystemIcons.cs
- EntryWrittenEventArgs.cs
- ModelFunctionTypeElement.cs
- XmlAttributeCache.cs
- ValidationHelper.cs
- MemoryStream.cs
- PageTheme.cs
- XmlMemberMapping.cs
- WasHttpModulesInstallComponent.cs
- _ContextAwareResult.cs
- RegistryPermission.cs
- BindingCollectionElement.cs
- OutputCacheProfile.cs
- ResolveMatchesMessageCD1.cs
- BaseAsyncResult.cs
- ImageSource.cs
- Cloud.cs
- OletxEnlistment.cs
- SiteMapNodeItemEventArgs.cs
- ThreadAbortException.cs
- FlowDocumentScrollViewer.cs
- ViewCellSlot.cs
- DefaultAssemblyResolver.cs
- IndexedGlyphRun.cs
- FacetChecker.cs
- XmlSchemaFacet.cs
- DocumentViewer.cs
- WindowsAltTab.cs
- DiagnosticsConfigurationHandler.cs
- RijndaelManagedTransform.cs
- _ProxyRegBlob.cs
- ImpersonateTokenRef.cs
- SrgsDocument.cs
- TreeNodeCollection.cs
- WaitHandleCannotBeOpenedException.cs
- FixedStringLookup.cs
- ListViewSelectEventArgs.cs
- DocumentXmlWriter.cs
- FontFamily.cs
- AuthenticationModulesSection.cs
- AuthenticationManager.cs
- UIAgentAsyncEndRequest.cs
- BamlRecordWriter.cs
- PathStreamGeometryContext.cs
- Permission.cs
- SmiXetterAccessMap.cs
- Timer.cs
- SortKey.cs
- AuditLog.cs
- SoapSchemaExporter.cs
- CellQuery.cs
- PauseStoryboard.cs
- ListViewItemEventArgs.cs
- GlyphTypeface.cs
- XmlLinkedNode.cs
- DropSource.cs
- RtType.cs
- ContentFilePart.cs
- FrameSecurityDescriptor.cs
- MappingModelBuildProvider.cs
- ComIntegrationManifestGenerator.cs
- StickyNoteHelper.cs