Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- X509Certificate.cs
- ChtmlImageAdapter.cs
- RuntimeArgumentHandle.cs
- FormViewCommandEventArgs.cs
- MenuEventArgs.cs
- SafeNativeMethodsCLR.cs
- __ComObject.cs
- DataPagerCommandEventArgs.cs
- DesignerObject.cs
- WindowInteropHelper.cs
- Point4DConverter.cs
- HTTPNotFoundHandler.cs
- GetPageNumberCompletedEventArgs.cs
- SspiHelper.cs
- AssemblyCollection.cs
- EventBuilder.cs
- CFGGrammar.cs
- TabletCollection.cs
- VirtualDirectoryMappingCollection.cs
- MailWriter.cs
- IdentitySection.cs
- PeerObject.cs
- ContractCodeDomInfo.cs
- CodeStatement.cs
- SymbolTable.cs
- SafeCertificateStore.cs
- OperationCanceledException.cs
- EUCJPEncoding.cs
- MasterPage.cs
- AutoResetEvent.cs
- VectorConverter.cs
- SemanticTag.cs
- CreateBookmarkScope.cs
- AsyncDataRequest.cs
- FileDialogCustomPlacesCollection.cs
- LinkGrep.cs
- HtmlWindowCollection.cs
- ServicePointManager.cs
- InvalidFilterCriteriaException.cs
- XamlTypeWithExplicitNamespace.cs
- ProjectionPlanCompiler.cs
- PageVisual.cs
- RuleProcessor.cs
- AudioBase.cs
- EndCreateSecurityTokenRequest.cs
- DataControlLinkButton.cs
- LinkedList.cs
- DbProviderFactory.cs
- DataGridColumnStyleMappingNameEditor.cs
- SafeThreadHandle.cs
- ObjectParameterCollection.cs
- ExceptionUtil.cs
- StringArrayConverter.cs
- BezierSegment.cs
- __FastResourceComparer.cs
- DbCommandTree.cs
- ObjectViewFactory.cs
- EasingFunctionBase.cs
- BitmapPalettes.cs
- SystemIPGlobalStatistics.cs
- XsltArgumentList.cs
- HTMLTagNameToTypeMapper.cs
- KeyValueConfigurationCollection.cs
- OperationAbortedException.cs
- ServiceActivationException.cs
- LockCookie.cs
- SelectionService.cs
- ReturnEventArgs.cs
- SingleBodyParameterMessageFormatter.cs
- SqlProfileProvider.cs
- NativeMethods.cs
- ValidationService.cs
- MatrixAnimationBase.cs
- OleDbTransaction.cs
- TagPrefixInfo.cs
- TableLayoutSettingsTypeConverter.cs
- newinstructionaction.cs
- Tablet.cs
- Version.cs
- PtsHelper.cs
- ProfileEventArgs.cs
- SingleSelectRootGridEntry.cs
- BasePattern.cs
- RC2.cs
- EtwTrace.cs
- BatchStream.cs
- AdRotatorDesigner.cs
- Keywords.cs
- UrlRoutingHandler.cs
- RoutedEventConverter.cs
- Delegate.cs
- XPathArrayIterator.cs
- SimpleTypesSurrogate.cs
- PropertyDescriptorComparer.cs
- ContextMenuStrip.cs
- ManagementClass.cs
- XMLSchema.cs
- FlowDocument.cs
- HtmlElement.cs
- SqlDataSourceCache.cs