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
- RequestTimeoutManager.cs
- InvokeMethod.cs
- WCFServiceClientProxyGenerator.cs
- SqlUDTStorage.cs
- Constraint.cs
- MdiWindowListItemConverter.cs
- MultiDataTrigger.cs
- Query.cs
- DataGridViewToolTip.cs
- XamlInt32CollectionSerializer.cs
- AssemblyBuilder.cs
- RepeaterDataBoundAdapter.cs
- BufferedGraphics.cs
- StrongNamePublicKeyBlob.cs
- RuntimeWrappedException.cs
- WebBrowserHelper.cs
- WindowsTab.cs
- UrlPath.cs
- ConnectionConsumerAttribute.cs
- TemplateAction.cs
- DesignerTransactionCloseEvent.cs
- AddressingProperty.cs
- ServiceDescription.cs
- XmlSchemaSet.cs
- KnownIds.cs
- DES.cs
- DataGridViewRowPostPaintEventArgs.cs
- FrameAutomationPeer.cs
- NumberFormatInfo.cs
- ImageFormat.cs
- DataGridState.cs
- ClientRuntimeConfig.cs
- RemotingConfigParser.cs
- LogoValidationException.cs
- WindowInteropHelper.cs
- DataControlFieldCollection.cs
- ReflectionServiceProvider.cs
- RichTextBoxConstants.cs
- DurableEnlistmentState.cs
- WindowsFormsSynchronizationContext.cs
- TextWriterTraceListener.cs
- UITypeEditor.cs
- ItemsControlAutomationPeer.cs
- Convert.cs
- HttpRequestCacheValidator.cs
- DbProviderManifest.cs
- Exception.cs
- FlowDocumentPageViewerAutomationPeer.cs
- SchemaElement.cs
- UInt64.cs
- InternalPermissions.cs
- XsltCompileContext.cs
- LineServicesRun.cs
- ServiceSettingsResponseInfo.cs
- TextWriter.cs
- SettingsPropertyCollection.cs
- SubpageParagraph.cs
- RootBrowserWindow.cs
- GridViewRowCollection.cs
- HeaderFilter.cs
- UIElementPropertyUndoUnit.cs
- IndicFontClient.cs
- DataListCommandEventArgs.cs
- MsmqEncryptionAlgorithm.cs
- StronglyTypedResourceBuilder.cs
- WebPartExportVerb.cs
- NotCondition.cs
- StackBuilderSink.cs
- URLAttribute.cs
- XmlTypeAttribute.cs
- FormViewRow.cs
- ValidatorUtils.cs
- login.cs
- EdmValidator.cs
- OptionalMessageQuery.cs
- basemetadatamappingvisitor.cs
- UnknownBitmapEncoder.cs
- CatalogZoneDesigner.cs
- Storyboard.cs
- ConfigXmlElement.cs
- QueryAccessibilityHelpEvent.cs
- QueryAsyncResult.cs
- UserNameSecurityTokenAuthenticator.cs
- ScriptComponentDescriptor.cs
- ChannelTerminatedException.cs
- WebPartVerbCollection.cs
- InvokePatternIdentifiers.cs
- FixedTextSelectionProcessor.cs
- CodeMemberProperty.cs
- UInt16Storage.cs
- DataGridBoolColumn.cs
- RelatedCurrencyManager.cs
- Lasso.cs
- Vars.cs
- ActivityTypeCodeDomSerializer.cs
- Timer.cs
- WebServiceMethodData.cs
- CriticalExceptions.cs
- ReadOnlyDataSourceView.cs
- MediaTimeline.cs