Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / CodeDOM / CodeBinaryOperatorExpression.cs / 1305376 / CodeBinaryOperatorExpression.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 CodeBinaryOperatorExpression : CodeExpression { private CodeBinaryOperatorType op; private CodeExpression left; private CodeExpression right; ////// Represents a binary operator expression. /// ////// public CodeBinaryOperatorExpression() { } ////// Initializes a new instance of ///. /// /// public CodeBinaryOperatorExpression(CodeExpression left, CodeBinaryOperatorType op, CodeExpression right) { Right = right; Operator = op; Left = left; } ////// Initializes a new instance of ////// using the specified /// parameters. /// /// public CodeExpression Right { get { return right; } set { right = value; } } ////// Gets or sets /// the code expression on the right of the operator. /// ////// public CodeExpression Left { get { return left; } set { left = value; } } ////// Gets or sets /// the code expression on the left of the operator. /// ////// public CodeBinaryOperatorType Operator { get { return op; } set { op = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ ///// Gets or sets /// the operator in the binary operator expression. /// ///// // //----------------------------------------------------------------------------- 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 CodeBinaryOperatorExpression : CodeExpression { private CodeBinaryOperatorType op; private CodeExpression left; private CodeExpression right; ////// Represents a binary operator expression. /// ////// public CodeBinaryOperatorExpression() { } ////// Initializes a new instance of ///. /// /// public CodeBinaryOperatorExpression(CodeExpression left, CodeBinaryOperatorType op, CodeExpression right) { Right = right; Operator = op; Left = left; } ////// Initializes a new instance of ////// using the specified /// parameters. /// /// public CodeExpression Right { get { return right; } set { right = value; } } ////// Gets or sets /// the code expression on the right of the operator. /// ////// public CodeExpression Left { get { return left; } set { left = value; } } ////// Gets or sets /// the code expression on the left of the operator. /// ////// public CodeBinaryOperatorType Operator { get { return op; } set { op = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// Gets or sets /// the operator in the binary operator expression. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SafeNativeMethods.cs
- Instrumentation.cs
- BaseParaClient.cs
- ChangePasswordAutoFormat.cs
- Int32CAMarshaler.cs
- XmlSerializerNamespaces.cs
- WebPartPersonalization.cs
- QuinticEase.cs
- ReachDocumentReferenceSerializer.cs
- HttpCapabilitiesEvaluator.cs
- StateChangeEvent.cs
- DataGridViewRowsRemovedEventArgs.cs
- AutomationElement.cs
- TextSearch.cs
- StorageTypeMapping.cs
- XmlHelper.cs
- DetailsViewInsertedEventArgs.cs
- OleStrCAMarshaler.cs
- AlternationConverter.cs
- UIElement.cs
- base64Transforms.cs
- DataGridViewColumnEventArgs.cs
- ListCollectionView.cs
- AppSettingsReader.cs
- ComponentCommands.cs
- XmlDataProvider.cs
- RelatedPropertyManager.cs
- X509IssuerSerialKeyIdentifierClause.cs
- BasicCellRelation.cs
- ErrorStyle.cs
- EncoderReplacementFallback.cs
- ArrayMergeHelper.cs
- DefaultPropertyAttribute.cs
- WSSecurityJan2004.cs
- XmlSchemaAttributeGroupRef.cs
- TreeNodeBinding.cs
- TreeNode.cs
- Debug.cs
- BrushConverter.cs
- HealthMonitoringSectionHelper.cs
- LabelDesigner.cs
- AspProxy.cs
- TypeValidationEventArgs.cs
- WindowsImpersonationContext.cs
- DataGridViewSelectedCellCollection.cs
- MimeFormImporter.cs
- XmlSigningNodeWriter.cs
- PkcsUtils.cs
- DiscoveryVersion.cs
- SharedStatics.cs
- PasswordBox.cs
- ServiceRouteHandler.cs
- HttpFileCollection.cs
- SafeFileMappingHandle.cs
- VScrollBar.cs
- ToolStripInSituService.cs
- MailMessageEventArgs.cs
- BigInt.cs
- DataShape.cs
- SystemMulticastIPAddressInformation.cs
- FtpWebRequest.cs
- GridViewUpdatedEventArgs.cs
- Transform.cs
- XmlStringTable.cs
- GridViewDesigner.cs
- NonBatchDirectoryCompiler.cs
- DoubleAnimation.cs
- ColorAnimationBase.cs
- XXXOnTypeBuilderInstantiation.cs
- BitStack.cs
- SelectedDatesCollection.cs
- OracleDataAdapter.cs
- FtpWebResponse.cs
- XmlSchemaAttributeGroup.cs
- WebBrowserContainer.cs
- DataGridViewColumnConverter.cs
- InvalidEnumArgumentException.cs
- PEFileEvidenceFactory.cs
- AvTraceDetails.cs
- CompensationDesigner.cs
- FileDialogCustomPlaces.cs
- FixedSOMGroup.cs
- MailSettingsSection.cs
- BamlResourceSerializer.cs
- tabpagecollectioneditor.cs
- TextCompositionEventArgs.cs
- DataGridViewMethods.cs
- TransactionFlowBindingElementImporter.cs
- Timer.cs
- SqlDependencyUtils.cs
- WsdlServiceChannelBuilder.cs
- RegexReplacement.cs
- EntityKey.cs
- TrackBarDesigner.cs
- Axis.cs
- DesignTimeVisibleAttribute.cs
- TimeSpanConverter.cs
- SerializationFieldInfo.cs
- ProfileSection.cs
- XmlSchemaIdentityConstraint.cs