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
- XmlAnyAttributeAttribute.cs
- HighContrastHelper.cs
- TemplatedMailWebEventProvider.cs
- FontFamily.cs
- TextBlockAutomationPeer.cs
- Solver.cs
- WinFormsUtils.cs
- DbExpressionVisitor.cs
- SuppressIldasmAttribute.cs
- New.cs
- XmlResolver.cs
- ThrowHelper.cs
- RestClientProxyHandler.cs
- FieldAccessException.cs
- FormViewModeEventArgs.cs
- CultureTableRecord.cs
- ObjectDataSourceChooseMethodsPanel.cs
- ToolStripDesignerUtils.cs
- DataSourceViewSchemaConverter.cs
- TextBoxLine.cs
- ButtonBase.cs
- webeventbuffer.cs
- DrawingContext.cs
- PasswordPropertyTextAttribute.cs
- OdbcTransaction.cs
- CollectionsUtil.cs
- PerformanceCounterCategory.cs
- XmlEntityReference.cs
- XmlDataProvider.cs
- XmlSchemaIdentityConstraint.cs
- PropertyRef.cs
- GroupItemAutomationPeer.cs
- SiteMapPathDesigner.cs
- EndPoint.cs
- PathParser.cs
- DataGridViewCell.cs
- TemplatingOptionsDialog.cs
- GradientBrush.cs
- RadioButton.cs
- HttpApplicationFactory.cs
- QualifierSet.cs
- VisualTarget.cs
- AuthenticationModuleElement.cs
- WebPartConnection.cs
- ListControlBuilder.cs
- DataGridCellClipboardEventArgs.cs
- DoWorkEventArgs.cs
- CompModSwitches.cs
- PageTheme.cs
- PtsHelper.cs
- QueryExpr.cs
- TemplateLookupAction.cs
- WebEventCodes.cs
- FamilyTypeface.cs
- MatrixTransform.cs
- Vector3DCollectionConverter.cs
- precedingsibling.cs
- NumberFormatInfo.cs
- ConfigXmlAttribute.cs
- WebExceptionStatus.cs
- ReachPageContentCollectionSerializerAsync.cs
- ReflectEventDescriptor.cs
- ContentElement.cs
- MailSettingsSection.cs
- TemplateNameScope.cs
- LinqDataSourceDeleteEventArgs.cs
- CompilationLock.cs
- AxisAngleRotation3D.cs
- ImageDrawing.cs
- RegexCompiler.cs
- ResourceKey.cs
- FlowLayoutPanel.cs
- InvalidDataException.cs
- AutoCompleteStringCollection.cs
- GeneralTransformCollection.cs
- ReadContentAsBinaryHelper.cs
- MessagePropertyAttribute.cs
- DES.cs
- Regex.cs
- IBuiltInEvidence.cs
- ToolStripLocationCancelEventArgs.cs
- RegisteredDisposeScript.cs
- WSHttpBindingCollectionElement.cs
- FreezableOperations.cs
- NavigationExpr.cs
- ScriptingSectionGroup.cs
- GuidelineCollection.cs
- OneToOneMappingSerializer.cs
- ComponentResourceKey.cs
- EnumValAlphaComparer.cs
- PropertyEmitter.cs
- DashStyles.cs
- OleDbSchemaGuid.cs
- GlyphCache.cs
- XPathNavigatorKeyComparer.cs
- Point3DConverter.cs
- ChannelFactory.cs
- RowUpdatedEventArgs.cs
- Variant.cs
- ToolboxItemWrapper.cs