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
- WindowsFormsSynchronizationContext.cs
- MetadataArtifactLoaderCompositeFile.cs
- ListControlConvertEventArgs.cs
- ProcessModuleCollection.cs
- Stream.cs
- DataSetUtil.cs
- GradientSpreadMethodValidation.cs
- SHA512Managed.cs
- DirectoryObjectSecurity.cs
- Composition.cs
- FunctionUpdateCommand.cs
- DataReaderContainer.cs
- HttpProfileGroupBase.cs
- AuthenticationService.cs
- CFStream.cs
- RootBuilder.cs
- SectionUpdates.cs
- webeventbuffer.cs
- MenuEventArgs.cs
- XmlLangPropertyAttribute.cs
- iisPickupDirectory.cs
- ThrowHelper.cs
- basecomparevalidator.cs
- AsyncOperation.cs
- BatchServiceHost.cs
- DBSqlParser.cs
- InvokeGenerator.cs
- UITypeEditors.cs
- WebCodeGenerator.cs
- EnvironmentPermission.cs
- _OverlappedAsyncResult.cs
- ConfigXmlAttribute.cs
- _NestedSingleAsyncResult.cs
- BaseValidatorDesigner.cs
- DetailsViewUpdatedEventArgs.cs
- SystemIPGlobalProperties.cs
- DependsOnAttribute.cs
- Compilation.cs
- HttpWebResponse.cs
- RepeatBehaviorConverter.cs
- DefaultPropertyAttribute.cs
- SelectedDatesCollection.cs
- ZipIOCentralDirectoryDigitalSignature.cs
- PropertyTabAttribute.cs
- BoolExpr.cs
- Vars.cs
- DiagnosticTrace.cs
- DesignerAttributeInfo.cs
- ProgressChangedEventArgs.cs
- EpmTargetPathSegment.cs
- EncodingTable.cs
- Thumb.cs
- TimeoutHelper.cs
- Root.cs
- VBCodeProvider.cs
- ModelTreeEnumerator.cs
- UnsafePeerToPeerMethods.cs
- OrderablePartitioner.cs
- ServiceChannelFactory.cs
- TransactionManager.cs
- KeyboardEventArgs.cs
- ISAPIApplicationHost.cs
- SimpleWebHandlerParser.cs
- AliasGenerator.cs
- ReadOnlyDictionary.cs
- DataGridCell.cs
- SEHException.cs
- AxisAngleRotation3D.cs
- EntityContainerAssociationSetEnd.cs
- TaiwanCalendar.cs
- RawStylusInput.cs
- Operators.cs
- ReversePositionQuery.cs
- DataObjectEventArgs.cs
- ThreadLocal.cs
- SqlCacheDependencyDatabaseCollection.cs
- ProgressBarRenderer.cs
- InputProcessorProfilesLoader.cs
- GiveFeedbackEvent.cs
- PtsHelper.cs
- VectorKeyFrameCollection.cs
- SafeSecurityHandles.cs
- TimeIntervalCollection.cs
- SqlDataSourceCache.cs
- RoamingStoreFileUtility.cs
- StringTraceRecord.cs
- VBIdentifierDesigner.xaml.cs
- SQlBooleanStorage.cs
- ColorContextHelper.cs
- WindowsStatic.cs
- ThrowHelper.cs
- TypedRowHandler.cs
- SocketAddress.cs
- VScrollBar.cs
- PageAsyncTaskManager.cs
- ComponentChangingEvent.cs
- BindingOperations.cs
- OperationAbortedException.cs
- ObjectHelper.cs
- RegistryKey.cs