Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ ///// Gets or sets /// the operator in the binary operator expression. /// ///// 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; } } } } // 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
- WebPartCatalogAddVerb.cs
- JapaneseCalendar.cs
- DragDrop.cs
- FilterFactory.cs
- SwitchExpression.cs
- TypeDescriptionProvider.cs
- GeneratedCodeAttribute.cs
- ISFTagAndGuidCache.cs
- XmlAttributeCache.cs
- UserControlBuildProvider.cs
- WebServicesSection.cs
- BooleanExpr.cs
- CodeTypeDelegate.cs
- PropertyGrid.cs
- CellTreeNodeVisitors.cs
- SafeFindHandle.cs
- AsyncPostBackErrorEventArgs.cs
- RuntimeEnvironment.cs
- CodeArrayIndexerExpression.cs
- InkCanvasAutomationPeer.cs
- PKCS1MaskGenerationMethod.cs
- WindowsAuthenticationEventArgs.cs
- FormViewModeEventArgs.cs
- Misc.cs
- DropSource.cs
- _NegoState.cs
- StateDesigner.Helpers.cs
- COM2PropertyDescriptor.cs
- MimeFormImporter.cs
- ValidatorCompatibilityHelper.cs
- DefaultAsyncDataDispatcher.cs
- EllipseGeometry.cs
- FixedSOMLineRanges.cs
- AstNode.cs
- ReferencedAssemblyResolver.cs
- Error.cs
- SystemEvents.cs
- XmlAnyElementAttribute.cs
- Mappings.cs
- ExchangeUtilities.cs
- ProfileProvider.cs
- DiscreteKeyFrames.cs
- FixedDSBuilder.cs
- _NativeSSPI.cs
- DriveInfo.cs
- StickyNoteAnnotations.cs
- RequestQueue.cs
- DataGridLength.cs
- EffectiveValueEntry.cs
- JavaScriptString.cs
- ScrollItemPattern.cs
- CompilerGeneratedAttribute.cs
- FontFaceLayoutInfo.cs
- MemberAccessException.cs
- XmlSchemaSequence.cs
- LassoHelper.cs
- BindingExpressionUncommonField.cs
- BufferModesCollection.cs
- StrokeCollectionConverter.cs
- ProfileSection.cs
- HitTestWithPointDrawingContextWalker.cs
- ClusterRegistryConfigurationProvider.cs
- GeneralTransformGroup.cs
- AdCreatedEventArgs.cs
- ExpressionConverter.cs
- AspCompat.cs
- DataBindingList.cs
- ThrowHelper.cs
- Metafile.cs
- DataControlField.cs
- WorkflowRuntimeSection.cs
- DragEventArgs.cs
- PartialCachingControl.cs
- ISAPIWorkerRequest.cs
- WindowsGraphicsCacheManager.cs
- HttpWebResponse.cs
- CryptoConfig.cs
- BevelBitmapEffect.cs
- UpDownEvent.cs
- Cursors.cs
- MessageQueueEnumerator.cs
- StringFunctions.cs
- BitStream.cs
- DrawingContextDrawingContextWalker.cs
- PointConverter.cs
- DataGridViewMethods.cs
- MD5.cs
- _FixedSizeReader.cs
- DatePickerTextBox.cs
- HebrewCalendar.cs
- ComponentChangingEvent.cs
- Part.cs
- RangeValuePattern.cs
- EventRoute.cs
- BitmapEffectGeneralTransform.cs
- XsdDuration.cs
- CapabilitiesState.cs
- FixedSOMGroup.cs
- BufferedWebEventProvider.cs
- UnsafeNativeMethods.cs