Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / CodeDOM / CodeAssignStatement.cs / 1305376 / CodeAssignStatement.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 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. /// ///// // //----------------------------------------------------------------------------- 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 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
- AmbientProperties.cs
- TemplateBuilder.cs
- ObjectHandle.cs
- HttpServerUtilityBase.cs
- xmlsaver.cs
- OdbcReferenceCollection.cs
- LoginView.cs
- StringUtil.cs
- XmlUTF8TextReader.cs
- AddDataControlFieldDialog.cs
- SamlAuthorizationDecisionStatement.cs
- FixedStringLookup.cs
- ProjectionCamera.cs
- RowToFieldTransformer.cs
- DesignerFrame.cs
- SchemaLookupTable.cs
- ViewManagerAttribute.cs
- WebBrowser.cs
- Exceptions.cs
- TypeReference.cs
- TextDecorationLocationValidation.cs
- HTMLTextWriter.cs
- Int64.cs
- TreeNodeMouseHoverEvent.cs
- SqlVisitor.cs
- PrePostDescendentsWalker.cs
- RegionIterator.cs
- Query.cs
- TrustLevelCollection.cs
- FileLoadException.cs
- ArgumentException.cs
- ViewValidator.cs
- TraceContextEventArgs.cs
- CultureInfo.cs
- CodeTypeDeclarationCollection.cs
- ContractAdapter.cs
- tabpagecollectioneditor.cs
- elementinformation.cs
- Msmq4PoisonHandler.cs
- ArgIterator.cs
- HttpListenerRequestTraceRecord.cs
- RC2CryptoServiceProvider.cs
- OpacityConverter.cs
- AttachedPropertyBrowsableForChildrenAttribute.cs
- TreeNodeClickEventArgs.cs
- NumericUpDown.cs
- COM2ComponentEditor.cs
- ConfigurationManagerHelperFactory.cs
- AttributeProviderAttribute.cs
- WebResponse.cs
- shaperfactoryquerycachekey.cs
- WorkflowPageSetupDialog.cs
- SerializableReadOnlyDictionary.cs
- MemoryMappedFileSecurity.cs
- StandardMenuStripVerb.cs
- XslTransform.cs
- PocoEntityKeyStrategy.cs
- DataRowCollection.cs
- SignatureSummaryDialog.cs
- EditorPartDesigner.cs
- ImageField.cs
- IdnMapping.cs
- GlyphInfoList.cs
- TileBrush.cs
- UIPermission.cs
- DrawingGroup.cs
- LayoutTableCell.cs
- XmlSchemaComplexContent.cs
- WorkflowPageSetupDialog.cs
- Deflater.cs
- ListBoxItemWrapperAutomationPeer.cs
- MD5Cng.cs
- Attachment.cs
- ArgumentException.cs
- ControlValuePropertyAttribute.cs
- DrawingImage.cs
- XamlDesignerSerializationManager.cs
- ValueOfAction.cs
- BitFlagsGenerator.cs
- ReservationCollection.cs
- RayMeshGeometry3DHitTestResult.cs
- ObjectHelper.cs
- MessageQueue.cs
- TagPrefixInfo.cs
- Point3DAnimationUsingKeyFrames.cs
- SourceFileBuildProvider.cs
- COM2ColorConverter.cs
- GuidelineCollection.cs
- BasicExpandProvider.cs
- TimeSpanMinutesConverter.cs
- FileDialog_Vista_Interop.cs
- ErrorTableItemStyle.cs
- LOSFormatter.cs
- userdatakeys.cs
- ConfigWriter.cs
- AspProxy.cs
- ApplicationInterop.cs
- TextWriter.cs
- XPathNodeInfoAtom.cs
- BuildResult.cs