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
- UniqueIdentifierService.cs
- ParagraphResult.cs
- RotateTransform3D.cs
- ContainerTracking.cs
- OdbcParameterCollection.cs
- DirectoryInfo.cs
- PassportAuthenticationEventArgs.cs
- DesignerSerializationOptionsAttribute.cs
- RouteData.cs
- LinqDataSourceDeleteEventArgs.cs
- ConnectionDemuxer.cs
- EntityDataSourceUtil.cs
- HtmlButton.cs
- HostedBindingBehavior.cs
- ElementMarkupObject.cs
- EntityDataSourceContextCreatedEventArgs.cs
- CompressStream.cs
- EntityContainerEntitySetDefiningQuery.cs
- GiveFeedbackEventArgs.cs
- CatalogPart.cs
- DSASignatureDeformatter.cs
- ReplacementText.cs
- BufferModesCollection.cs
- GridViewColumnHeaderAutomationPeer.cs
- XmlEventCache.cs
- FontCacheLogic.cs
- BindingCollection.cs
- WeakEventTable.cs
- ElementMarkupObject.cs
- TextElementCollection.cs
- ObjectDataSourceView.cs
- XmlUtf8RawTextWriter.cs
- RequestQueue.cs
- ServiceMemoryGates.cs
- URLMembershipCondition.cs
- ValidationHelper.cs
- XmlCharCheckingReader.cs
- ConnectionConsumerAttribute.cs
- WebOperationContext.cs
- UsernameTokenFactoryCredential.cs
- RangeValueProviderWrapper.cs
- VariantWrapper.cs
- TablePattern.cs
- FtpCachePolicyElement.cs
- XmlAggregates.cs
- ProgressBarRenderer.cs
- XmlBufferedByteStreamReader.cs
- PrePostDescendentsWalker.cs
- ProcessModelInfo.cs
- documentsequencetextview.cs
- StateManagedCollection.cs
- XpsSerializerFactory.cs
- ProjectionPruner.cs
- Avt.cs
- ZipIOLocalFileDataDescriptor.cs
- InputElement.cs
- MetroSerializationManager.cs
- HttpHandlerAction.cs
- WindowsSlider.cs
- SqlProviderManifest.cs
- SynchronousChannel.cs
- linebase.cs
- CacheSection.cs
- ConnectionInterfaceCollection.cs
- ProfileGroupSettings.cs
- ArrayItemValue.cs
- RealProxy.cs
- WmlPhoneCallAdapter.cs
- ApplicationInfo.cs
- SyndicationElementExtension.cs
- ListViewGroupItemCollection.cs
- Vector3DValueSerializer.cs
- StatusBarItem.cs
- Wildcard.cs
- WebAdminConfigurationHelper.cs
- WebMessageFormatHelper.cs
- CodeCommentStatementCollection.cs
- PermissionSetEnumerator.cs
- ScriptManagerProxy.cs
- RsaKeyIdentifierClause.cs
- DocumentXmlWriter.cs
- WebPart.cs
- RequestQueue.cs
- SubMenuStyle.cs
- ConnectionConsumerAttribute.cs
- ReachPageContentCollectionSerializerAsync.cs
- ShapeTypeface.cs
- EntityContainerEmitter.cs
- HtmlInputPassword.cs
- TemplatedMailWebEventProvider.cs
- CellTreeNode.cs
- unsafenativemethodstextservices.cs
- ContextProperty.cs
- DynamicRouteExpression.cs
- TriggerAction.cs
- SQLDouble.cs
- InternalCache.cs
- ChannelBinding.cs
- SystemIPv4InterfaceProperties.cs
- OdbcDataReader.cs