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
- SafeFindHandle.cs
- FixedPage.cs
- ThicknessAnimationUsingKeyFrames.cs
- StartFileNameEditor.cs
- TextInfo.cs
- BaseProcessor.cs
- FrameworkPropertyMetadata.cs
- RequestQueue.cs
- NumericExpr.cs
- SerializableAttribute.cs
- LocalBuilder.cs
- _FtpDataStream.cs
- HttpCapabilitiesSectionHandler.cs
- ProfilePropertySettingsCollection.cs
- RecognizedPhrase.cs
- HashAlgorithm.cs
- Graph.cs
- DBSchemaTable.cs
- SimpleWebHandlerParser.cs
- ReplyAdapterChannelListener.cs
- ReaderOutput.cs
- ToolStripPanelDesigner.cs
- ISCIIEncoding.cs
- KnownTypes.cs
- Crc32Helper.cs
- XmlDataCollection.cs
- FormsAuthentication.cs
- CodeNamespace.cs
- EncodingInfo.cs
- DesignTimeSiteMapProvider.cs
- HMACSHA1.cs
- HtmlTableRowCollection.cs
- ProxyWebPart.cs
- SettingsPropertyWrongTypeException.cs
- GradientStopCollection.cs
- DisplayInformation.cs
- IISUnsafeMethods.cs
- PropertyItemInternal.cs
- TemplateParser.cs
- ToolBarButton.cs
- SkipQueryOptionExpression.cs
- UserControlCodeDomTreeGenerator.cs
- CompilationUtil.cs
- BrowserTree.cs
- CFStream.cs
- Vector3DAnimation.cs
- DataSourceCache.cs
- AppDomainGrammarProxy.cs
- RequestCachePolicyConverter.cs
- DesignerHierarchicalDataSourceView.cs
- Base64WriteStateInfo.cs
- CryptoConfig.cs
- DataGridViewCellValidatingEventArgs.cs
- HighContrastHelper.cs
- ScopedKnownTypes.cs
- MappingModelBuildProvider.cs
- WindowsFont.cs
- Atom10FeedFormatter.cs
- PkcsMisc.cs
- DoubleCollection.cs
- EmptyControlCollection.cs
- basevalidator.cs
- WindowsRichEdit.cs
- RawStylusActions.cs
- MediaScriptCommandRoutedEventArgs.cs
- GPPOINTF.cs
- MessageQueueException.cs
- GenerateScriptTypeAttribute.cs
- SiteMapPathDesigner.cs
- DbConnectionStringCommon.cs
- Attributes.cs
- SpStreamWrapper.cs
- SelectionProviderWrapper.cs
- GacUtil.cs
- BamlRecordHelper.cs
- WebPartEditorCancelVerb.cs
- CheckBoxBaseAdapter.cs
- MeasureItemEvent.cs
- FormParameter.cs
- TextSimpleMarkerProperties.cs
- TripleDESCryptoServiceProvider.cs
- BufferBuilder.cs
- HashCodeCombiner.cs
- ADMembershipProvider.cs
- ButtonBase.cs
- SendMailErrorEventArgs.cs
- SQLByte.cs
- EntityDataSourceView.cs
- SplayTreeNode.cs
- HttpContext.cs
- FirstMatchCodeGroup.cs
- ProtocolsConfigurationEntry.cs
- SecurityTokenAuthenticator.cs
- AppSettingsExpressionBuilder.cs
- XamlStyleSerializer.cs
- TextEffectCollection.cs
- BaseDataListDesigner.cs
- TileBrush.cs
- GridItemProviderWrapper.cs
- WaitHandleCannotBeOpenedException.cs