Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / CompMod / System / CodeDOM / CodeBinaryOperatorExpression.cs / 1 / CodeBinaryOperatorExpression.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 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; } } } }/// 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
- CssClassPropertyAttribute.cs
- SourceFileInfo.cs
- GradientBrush.cs
- Matrix3DConverter.cs
- CoreSwitches.cs
- AsyncOperation.cs
- HWStack.cs
- WebBrowsableAttribute.cs
- DefaultMemberAttribute.cs
- IssuanceLicense.cs
- Publisher.cs
- ThreadInterruptedException.cs
- ResourcesChangeInfo.cs
- MergeLocalizationDirectives.cs
- ArgumentValidation.cs
- ToolStripSystemRenderer.cs
- TimeoutTimer.cs
- ProfileModule.cs
- RectangleF.cs
- TraceHandlerErrorFormatter.cs
- MenuAutomationPeer.cs
- ClientEventManager.cs
- RoleGroupCollection.cs
- WebPartVerbsEventArgs.cs
- XmlnsDefinitionAttribute.cs
- PriorityItem.cs
- PropertyCollection.cs
- EventProviderClassic.cs
- DataViewManager.cs
- Point3DAnimationUsingKeyFrames.cs
- AppliedDeviceFiltersEditor.cs
- ListItemParagraph.cs
- RegionData.cs
- WindowsHyperlink.cs
- SerializationFieldInfo.cs
- WmfPlaceableFileHeader.cs
- SelectionChangedEventArgs.cs
- Query.cs
- PopupRootAutomationPeer.cs
- IntPtr.cs
- ListViewDesigner.cs
- _Semaphore.cs
- TextServicesHost.cs
- CustomValidator.cs
- QueryOperationResponseOfT.cs
- MarkerProperties.cs
- ConfigurationCollectionAttribute.cs
- TransactionBehavior.cs
- CatalogZoneAutoFormat.cs
- Command.cs
- StickyNoteContentControl.cs
- BufferedGraphics.cs
- COM2ColorConverter.cs
- ETagAttribute.cs
- BitmapSourceSafeMILHandle.cs
- CopyAction.cs
- BamlReader.cs
- DataControlField.cs
- ApplicationManager.cs
- ImageKeyConverter.cs
- TagPrefixInfo.cs
- CollectionContainer.cs
- EventDescriptorCollection.cs
- ClientBuildManager.cs
- InplaceBitmapMetadataWriter.cs
- GraphicsContainer.cs
- DayRenderEvent.cs
- ColorAnimationBase.cs
- AsymmetricSignatureFormatter.cs
- DotExpr.cs
- Transform3D.cs
- Point4D.cs
- AppDomainShutdownMonitor.cs
- FixedDocumentPaginator.cs
- ICspAsymmetricAlgorithm.cs
- WebPartZone.cs
- HostingEnvironmentException.cs
- SqlCharStream.cs
- PassportAuthentication.cs
- MatrixValueSerializer.cs
- Win32Native.cs
- TripleDESCryptoServiceProvider.cs
- SchemaTypeEmitter.cs
- TabControlAutomationPeer.cs
- DocumentPaginator.cs
- ScriptIgnoreAttribute.cs
- CommandEventArgs.cs
- MediaPlayerState.cs
- TextViewSelectionProcessor.cs
- ObjectConverter.cs
- Utils.cs
- TreeNodeCollection.cs
- OleDbSchemaGuid.cs
- AsymmetricSignatureDeformatter.cs
- ContentElementAutomationPeer.cs
- BlobPersonalizationState.cs
- Application.cs
- SerTrace.cs
- ObjectStateEntry.cs
- RegexNode.cs