Code:
/ 4.0 / 4.0 / untmp / 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. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- BinaryEditor.cs
- GridEntryCollection.cs
- LogReservationCollection.cs
- StylusEventArgs.cs
- DbReferenceCollection.cs
- TimeEnumHelper.cs
- PropertyChangeTracker.cs
- BezierSegment.cs
- DataFormats.cs
- MemoryMappedViewStream.cs
- ChoiceConverter.cs
- WebPartManagerDesigner.cs
- EntityDataSourceViewSchema.cs
- TabItemAutomationPeer.cs
- TdsParserStateObject.cs
- PolyQuadraticBezierSegment.cs
- MetadataItemEmitter.cs
- DialogResultConverter.cs
- XmlEntityReference.cs
- WindowsSlider.cs
- UserControlDocumentDesigner.cs
- DesignerGenericWebPart.cs
- IBuiltInEvidence.cs
- TabPage.cs
- InkCollectionBehavior.cs
- MdiWindowListItemConverter.cs
- XmlDocument.cs
- QueryAsyncResult.cs
- VirtualDirectoryMapping.cs
- WizardStepBase.cs
- PlatformNotSupportedException.cs
- Symbol.cs
- FileDialogCustomPlacesCollection.cs
- GiveFeedbackEvent.cs
- BitConverter.cs
- PreApplicationStartMethodAttribute.cs
- ViewService.cs
- BamlLocalizabilityResolver.cs
- BamlMapTable.cs
- OleDbCommand.cs
- SizeAnimationBase.cs
- FigureHelper.cs
- BaseParser.cs
- HostedHttpRequestAsyncResult.cs
- EditCommandColumn.cs
- ServiceHostingEnvironment.cs
- ErrorCodes.cs
- DemultiplexingClientMessageFormatter.cs
- _IPv6Address.cs
- ETagAttribute.cs
- shaperfactoryquerycacheentry.cs
- WindowsNonControl.cs
- ApplicationDirectoryMembershipCondition.cs
- PackageRelationshipSelector.cs
- ConfigurationPermission.cs
- basecomparevalidator.cs
- Msec.cs
- AccessorTable.cs
- ResourcesGenerator.cs
- DesignerDataParameter.cs
- IndicCharClassifier.cs
- DateTimeOffsetConverter.cs
- DataReaderContainer.cs
- KnownBoxes.cs
- DispatchRuntime.cs
- Configuration.cs
- Compiler.cs
- Pool.cs
- QueueSurrogate.cs
- AbstractExpressions.cs
- QueryExpression.cs
- SqlCachedBuffer.cs
- TimeStampChecker.cs
- DomNameTable.cs
- SecurityMessageProperty.cs
- CommittableTransaction.cs
- ManipulationStartedEventArgs.cs
- XmlWhitespace.cs
- WebRequestModuleElementCollection.cs
- TextEvent.cs
- CryptoApi.cs
- CannotUnloadAppDomainException.cs
- CompilerWrapper.cs
- PresentationTraceSources.cs
- TableColumnCollectionInternal.cs
- InputLanguage.cs
- NavigationFailedEventArgs.cs
- DataGridParentRows.cs
- GlyphRunDrawing.cs
- Win32.cs
- WebPartZone.cs
- ResXResourceSet.cs
- FileVersion.cs
- LexicalChunk.cs
- XmlFormatExtensionAttribute.cs
- InstallerTypeAttribute.cs
- DataRowCollection.cs
- EntitySqlException.cs
- WsdlExporter.cs
- oledbmetadatacollectionnames.cs