Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / CompMod / System / CodeDOM / CodeAssignStatement.cs / 1 / CodeAssignStatement.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 CodeAssignStatement : CodeStatement { private CodeExpression left; private CodeExpression right; ////// Represents a simple assignment statement. /// ////// public CodeAssignStatement() { } ////// Initializes a new instance of ///. /// /// public CodeAssignStatement(CodeExpression left, CodeExpression right) { Left = left; Right = right; } ////// Initializes a new instance of ///that represents the /// specified assignment values. /// /// public CodeExpression Left { get { return left; } set { left = value; } } ////// Gets or sets /// the variable to be assigned to. /// ////// public CodeExpression Right { get { return right; } set { right = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ ///// Gets or sets /// the value to assign. /// ///// 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 CodeAssignStatement : CodeStatement { private CodeExpression left; private CodeExpression right; ////// Represents a simple assignment statement. /// ////// public CodeAssignStatement() { } ////// Initializes a new instance of ///. /// /// public CodeAssignStatement(CodeExpression left, CodeExpression right) { Left = left; Right = right; } ////// Initializes a new instance of ///that represents the /// specified assignment values. /// /// public CodeExpression Left { get { return left; } set { left = value; } } ////// Gets or sets /// the variable to be assigned to. /// ////// public CodeExpression Right { get { return right; } set { right = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// Gets or sets /// the value to assign. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Label.cs
- ApplicationInfo.cs
- Clock.cs
- PermissionSetEnumerator.cs
- DataProviderNameConverter.cs
- AssemblyEvidenceFactory.cs
- RuntimeConfig.cs
- PowerModeChangedEventArgs.cs
- IconBitmapDecoder.cs
- SoundPlayer.cs
- XmlSignatureProperties.cs
- CTreeGenerator.cs
- ColumnReorderedEventArgs.cs
- MetadataUtilsSmi.cs
- TreeViewItemAutomationPeer.cs
- InputScopeManager.cs
- OracleNumber.cs
- DataException.cs
- WebPartConnectionsConnectVerb.cs
- TraceLog.cs
- x509utils.cs
- UIElement.cs
- CompoundFileStorageReference.cs
- ServicePointManagerElement.cs
- PackageFilter.cs
- ServiceObjectContainer.cs
- DataGridViewButtonColumn.cs
- TextFormatter.cs
- WorkflowValidationFailedException.cs
- PreservationFileReader.cs
- APCustomTypeDescriptor.cs
- PathGradientBrush.cs
- ApplicationFileParser.cs
- SqlDependencyListener.cs
- SafeRightsManagementPubHandle.cs
- BamlResourceSerializer.cs
- Image.cs
- CurrencyWrapper.cs
- DbProviderFactories.cs
- CompModSwitches.cs
- AuthenticationModulesSection.cs
- SpecialTypeDataContract.cs
- IProvider.cs
- StreamingContext.cs
- SweepDirectionValidation.cs
- PointAnimationUsingKeyFrames.cs
- ReadOnlyTernaryTree.cs
- ContextMarshalException.cs
- HTTPNotFoundHandler.cs
- COM2ColorConverter.cs
- DataGridSortingEventArgs.cs
- CompiledQueryCacheEntry.cs
- QuadraticBezierSegment.cs
- HtmlInputText.cs
- HtmlControl.cs
- StylusDevice.cs
- VersionedStream.cs
- SystemGatewayIPAddressInformation.cs
- ListDictionary.cs
- UpdatePanelTrigger.cs
- AttachedPropertyBrowsableForTypeAttribute.cs
- TableLayoutPanelBehavior.cs
- InputReportEventArgs.cs
- DataGridTableCollection.cs
- RequestQueue.cs
- WebPart.cs
- FileIOPermission.cs
- VisualTreeUtils.cs
- ContextMarshalException.cs
- CachedPathData.cs
- TTSEvent.cs
- LocationSectionRecord.cs
- SpecialNameAttribute.cs
- AuthorizationRule.cs
- OwnerDrawPropertyBag.cs
- NetTcpBindingCollectionElement.cs
- LabelExpression.cs
- NestedContainer.cs
- XmlSchemaAnnotated.cs
- ExpandedWrapper.cs
- CounterSampleCalculator.cs
- TrackingMemoryStreamFactory.cs
- RoutedUICommand.cs
- CodeAttributeArgumentCollection.cs
- ColumnResizeUndoUnit.cs
- TransactionFlowBindingElementImporter.cs
- RepeatBehavior.cs
- WebPartTransformerCollection.cs
- MimeTypePropertyAttribute.cs
- DownloadProgressEventArgs.cs
- ButtonChrome.cs
- OperandQuery.cs
- ScopelessEnumAttribute.cs
- FormParameter.cs
- MergeFailedEvent.cs
- ToolTipService.cs
- DbParameterCollectionHelper.cs
- Char.cs
- X500Name.cs
- SynchronizingStream.cs