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
- OleDbConnectionPoolGroupProviderInfo.cs
- SecureConversationDriver.cs
- MarkupCompiler.cs
- ExcCanonicalXml.cs
- Vertex.cs
- ThreadSafeList.cs
- DetailsViewRow.cs
- FontInfo.cs
- MailHeaderInfo.cs
- RadioButtonAutomationPeer.cs
- DelimitedListTraceListener.cs
- RemotingException.cs
- OleDbParameterCollection.cs
- ResetableIterator.cs
- XmlTextReaderImpl.cs
- ClientData.cs
- AnnotationResource.cs
- HelpExampleGenerator.cs
- UnionExpr.cs
- GroupBoxAutomationPeer.cs
- DateTimeFormatInfoScanner.cs
- _Connection.cs
- ValidatingCollection.cs
- XmlNamespaceManager.cs
- AdornerHitTestResult.cs
- MemoryStream.cs
- HandledMouseEvent.cs
- HyperLink.cs
- RadioButtonList.cs
- AdornerLayer.cs
- IntPtr.cs
- DesignTimeVisibleAttribute.cs
- RuleEngine.cs
- ToolStripDropTargetManager.cs
- SafeNativeMethodsOther.cs
- MediaElementAutomationPeer.cs
- ShellProvider.cs
- ProcessInputEventArgs.cs
- BufferedGraphicsContext.cs
- ToolStripTextBox.cs
- NamespaceMapping.cs
- TabletDeviceInfo.cs
- DataGridHeadersVisibilityToVisibilityConverter.cs
- XmlSiteMapProvider.cs
- ChangeDirector.cs
- OrderByQueryOptionExpression.cs
- SourceSwitch.cs
- WebControlsSection.cs
- ObjectStateEntryDbUpdatableDataRecord.cs
- Storyboard.cs
- WebPartConnectionsEventArgs.cs
- PtsCache.cs
- Variable.cs
- DataSourceSelectArguments.cs
- CFGGrammar.cs
- CheckBoxStandardAdapter.cs
- Mappings.cs
- ColorTransform.cs
- ConstNode.cs
- DataObjectFieldAttribute.cs
- InternalBufferOverflowException.cs
- counter.cs
- Rotation3DAnimation.cs
- RangeBase.cs
- FolderBrowserDialogDesigner.cs
- AccessViolationException.cs
- SqlServices.cs
- GradientStopCollection.cs
- FilePrompt.cs
- RelatedCurrencyManager.cs
- WindowsListViewGroupSubsetLink.cs
- WinEventWrap.cs
- ExeConfigurationFileMap.cs
- ObjectToken.cs
- OutKeywords.cs
- DeobfuscatingStream.cs
- RadioButtonBaseAdapter.cs
- KeyValueSerializer.cs
- SetStoryboardSpeedRatio.cs
- Accessors.cs
- XsltCompileContext.cs
- _SSPIWrapper.cs
- SafeThemeHandle.cs
- SqlGenericUtil.cs
- EventLog.cs
- SqlRowUpdatedEvent.cs
- DaylightTime.cs
- Math.cs
- TCEAdapterGenerator.cs
- BinaryExpression.cs
- CodeDOMUtility.cs
- ObjectItemNoOpAssemblyLoader.cs
- ApplicationSecurityManager.cs
- Win32PrintDialog.cs
- DesignerSerializationOptionsAttribute.cs
- RoleService.cs
- GlyphsSerializer.cs
- WebPartConnectionsEventArgs.cs
- OLEDB_Enum.cs
- DBCommand.cs