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
- OracleLob.cs
- ExtendedProtectionPolicyTypeConverter.cs
- DoubleLink.cs
- WasEndpointConfigContainer.cs
- FontStretch.cs
- ProcessModelInfo.cs
- CollectionType.cs
- SubpageParagraph.cs
- SelectedDatesCollection.cs
- CaseInsensitiveHashCodeProvider.cs
- InvalidDataException.cs
- ExtensibleClassFactory.cs
- RenderDataDrawingContext.cs
- GiveFeedbackEvent.cs
- SrgsSubset.cs
- TextEffect.cs
- CodeTypeDeclaration.cs
- DbBuffer.cs
- TextServicesContext.cs
- InkPresenter.cs
- AssociationTypeEmitter.cs
- DataExpression.cs
- RegularExpressionValidator.cs
- ExpressionBuilderContext.cs
- Psha1DerivedKeyGenerator.cs
- StylusPointProperties.cs
- DataObjectFieldAttribute.cs
- PropertyGridCommands.cs
- ImageFormatConverter.cs
- ParallelTimeline.cs
- UnsafeNativeMethods.cs
- DefaultSection.cs
- Size3D.cs
- Pair.cs
- AssertHelper.cs
- AuthorizationRule.cs
- HtmlControlAdapter.cs
- EntityDataSourceContainerNameItem.cs
- SqlInternalConnectionTds.cs
- ComboBoxAutomationPeer.cs
- Helpers.cs
- CachedFontFamily.cs
- ListView.cs
- RegexRunner.cs
- TypeResolvingOptions.cs
- X509RawDataKeyIdentifierClause.cs
- DetailsViewRowCollection.cs
- BrowserCapabilitiesCompiler.cs
- TextPointer.cs
- ScopeElementCollection.cs
- StrongName.cs
- SortKey.cs
- VisualStyleTypesAndProperties.cs
- Decoder.cs
- UrlAuthFailedErrorFormatter.cs
- ManagementOptions.cs
- ObjectItemCollection.cs
- keycontainerpermission.cs
- HashCoreRequest.cs
- ButtonFieldBase.cs
- CompatibleComparer.cs
- PathSegment.cs
- SoapEnvelopeProcessingElement.cs
- Blend.cs
- Events.cs
- RequestContext.cs
- EmptyEnumerator.cs
- parserscommon.cs
- Wildcard.cs
- DocumentGrid.cs
- CombinedHttpChannel.cs
- RuntimeHandles.cs
- NameValueSectionHandler.cs
- SqlCacheDependency.cs
- RangeValidator.cs
- PassportAuthenticationModule.cs
- CompilerTypeWithParams.cs
- Inflater.cs
- Int16Storage.cs
- CollectionChange.cs
- ForeignKeyConstraint.cs
- CanonicalXml.cs
- BamlStream.cs
- XmlSchemaGroup.cs
- PagedDataSource.cs
- DropTarget.cs
- SqlTypeConverter.cs
- DataListDesigner.cs
- CurrentChangingEventManager.cs
- DbUpdateCommandTree.cs
- DataGrid.cs
- NetDataContractSerializer.cs
- CompiledQuery.cs
- SslStream.cs
- WebSysDisplayNameAttribute.cs
- DynamicMethod.cs
- HostDesigntimeLicenseContext.cs
- CodeMethodReturnStatement.cs
- SamlAssertionKeyIdentifierClause.cs
- DefaultPerformanceCounters.cs