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
- CodeAccessSecurityEngine.cs
- DesignerListAdapter.cs
- DesignerAutoFormat.cs
- Renderer.cs
- MetadataArtifactLoaderXmlReaderWrapper.cs
- GridViewUpdateEventArgs.cs
- TypeConverterValueSerializer.cs
- StrokeNodeOperations2.cs
- NullableLongMinMaxAggregationOperator.cs
- ConnectionPoint.cs
- System.Data.OracleClient_BID.cs
- EventSetter.cs
- XmlSchemaSimpleType.cs
- TripleDESCryptoServiceProvider.cs
- ScrollableControl.cs
- ErrorTableItemStyle.cs
- XPathBuilder.cs
- NameTable.cs
- XmlHierarchicalEnumerable.cs
- SqlGatherConsumedAliases.cs
- figurelengthconverter.cs
- ToolStripProgressBar.cs
- AuthorizationRuleCollection.cs
- Point4DConverter.cs
- HwndSource.cs
- KeyFrames.cs
- SecurityRuntime.cs
- KeyPullup.cs
- XslAst.cs
- DropDownList.cs
- ChtmlTextWriter.cs
- InfoCardRSAPKCS1SignatureFormatter.cs
- RsaKeyIdentifierClause.cs
- ForeignConstraint.cs
- AssemblyLoader.cs
- GrammarBuilderDictation.cs
- CacheChildrenQuery.cs
- DataFormat.cs
- XmlUrlResolver.cs
- CheckBox.cs
- CodeTypeParameter.cs
- MemberInfoSerializationHolder.cs
- WriteLine.cs
- HttpPostedFile.cs
- SecurityTokenValidationException.cs
- TemplateAction.cs
- PropertyItemInternal.cs
- WebZone.cs
- Convert.cs
- CqlBlock.cs
- EntityContainerAssociationSetEnd.cs
- WeakRefEnumerator.cs
- IERequestCache.cs
- ExpressionParser.cs
- ProviderSettingsCollection.cs
- OleDbStruct.cs
- CheckBoxPopupAdapter.cs
- FileDialogPermission.cs
- ListControl.cs
- SqlUtils.cs
- XpsViewerException.cs
- DocumentViewerAutomationPeer.cs
- InvokeFunc.cs
- CriticalExceptions.cs
- _FixedSizeReader.cs
- BroadcastEventHelper.cs
- DataGridPagerStyle.cs
- EncoderExceptionFallback.cs
- DataListItemEventArgs.cs
- DataServiceSaveChangesEventArgs.cs
- ExpressionBuilder.cs
- OleDbCommand.cs
- ContentPlaceHolderDesigner.cs
- OperatingSystemVersionCheck.cs
- HttpCookiesSection.cs
- QilXmlReader.cs
- UnitySerializationHolder.cs
- Transform3D.cs
- TileBrush.cs
- ItemsControlAutomationPeer.cs
- FilterElement.cs
- UInt32Converter.cs
- x509store.cs
- ServiceDeploymentInfo.cs
- HtmlContainerControl.cs
- ExtensibleClassFactory.cs
- WindowsComboBox.cs
- EDesignUtil.cs
- PageSetupDialog.cs
- MailWriter.cs
- Converter.cs
- CrossContextChannel.cs
- Vector3DIndependentAnimationStorage.cs
- VarInfo.cs
- BuildProvidersCompiler.cs
- TypeDescriptor.cs
- SID.cs
- PlaceHolder.cs
- SoapCodeExporter.cs
- FunctionNode.cs