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
- SendMessageContent.cs
- TextOutput.cs
- SqlServices.cs
- XmlKeywords.cs
- Header.cs
- PixelShader.cs
- DelegatingTypeDescriptionProvider.cs
- Subset.cs
- ColumnWidthChangedEvent.cs
- PropertyChangeTracker.cs
- Compiler.cs
- DeferredElementTreeState.cs
- LogEntryHeaderSerializer.cs
- SplitContainer.cs
- FrameworkTextComposition.cs
- Thumb.cs
- ArraySortHelper.cs
- XmlSchemaAnnotated.cs
- BezierSegment.cs
- CryptoProvider.cs
- EventMappingSettingsCollection.cs
- NullReferenceException.cs
- CodeValidator.cs
- RoutedCommand.cs
- RenderingBiasValidation.cs
- DataGridTextColumn.cs
- Int32Rect.cs
- XmlElementCollection.cs
- ProxyGenerator.cs
- ResizeGrip.cs
- SetUserPreferenceRequest.cs
- WebPartConnectionsCloseVerb.cs
- GeometryModel3D.cs
- LocalizationComments.cs
- LinkGrep.cs
- AssemblyCacheEntry.cs
- MemberNameValidator.cs
- OdbcError.cs
- ScrollViewer.cs
- XmlSortKeyAccumulator.cs
- FixedDocumentPaginator.cs
- Transactions.cs
- EntityConnection.cs
- XmlSchemaAttributeGroupRef.cs
- Marshal.cs
- IndexedEnumerable.cs
- FactoryId.cs
- NumericUpDown.cs
- SystemWebSectionGroup.cs
- FileChangeNotifier.cs
- StoreItemCollection.Loader.cs
- RuntimeCompatibilityAttribute.cs
- StateWorkerRequest.cs
- RelatedCurrencyManager.cs
- Int32CollectionConverter.cs
- RowParagraph.cs
- FileDialog.cs
- InvalidPrinterException.cs
- TypeConverterAttribute.cs
- InstanceLockException.cs
- HostedTransportConfigurationBase.cs
- WriteTimeStream.cs
- RequestCacheValidator.cs
- TdsRecordBufferSetter.cs
- StringUtil.cs
- SafeNativeMethods.cs
- SqlIdentifier.cs
- TextEditor.cs
- StringHandle.cs
- RuntimeConfigurationRecord.cs
- TemplatePagerField.cs
- ConditionalBranch.cs
- DesignerFrame.cs
- HtmlInputRadioButton.cs
- HwndSourceParameters.cs
- CustomTypeDescriptor.cs
- DesignerGeometryHelper.cs
- FileSystemInfo.cs
- ClientFormsIdentity.cs
- DescendentsWalker.cs
- XPathPatternParser.cs
- ConnectionPoint.cs
- ResourceDictionaryCollection.cs
- UntypedNullExpression.cs
- AlignmentXValidation.cs
- ImageConverter.cs
- HwndHost.cs
- PersistenceException.cs
- NumericUpDownAccelerationCollection.cs
- ArgumentOutOfRangeException.cs
- XmlBindingWorker.cs
- DeleteBookmarkScope.cs
- DataGridViewRowErrorTextNeededEventArgs.cs
- CustomWebEventKey.cs
- CommonProperties.cs
- HelpOperationInvoker.cs
- XmlArrayAttribute.cs
- StringComparer.cs
- RadioButtonFlatAdapter.cs
- Rect3DConverter.cs