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
- WorkItem.cs
- XmlSchemaSimpleTypeRestriction.cs
- DetailsViewUpdateEventArgs.cs
- SimpleTableProvider.cs
- ClockGroup.cs
- ETagAttribute.cs
- DataPagerCommandEventArgs.cs
- HttpServerChannel.cs
- SerializerDescriptor.cs
- LocalizeDesigner.cs
- CompilerGeneratedAttribute.cs
- UTF7Encoding.cs
- CurrentChangingEventArgs.cs
- ItemPager.cs
- DataServiceSaveChangesEventArgs.cs
- AuthenticationConfig.cs
- TextLineBreak.cs
- HttpTransportSecurity.cs
- ConnectionOrientedTransportChannelFactory.cs
- LayoutTableCell.cs
- DbParameterHelper.cs
- BmpBitmapDecoder.cs
- prompt.cs
- ThreadSafeList.cs
- Matrix3DStack.cs
- ColorContext.cs
- FileAuthorizationModule.cs
- DbMetaDataFactory.cs
- ArrangedElement.cs
- DataObjectFieldAttribute.cs
- ResourceAttributes.cs
- RegexCompiler.cs
- HttpServerChannel.cs
- ImportContext.cs
- InplaceBitmapMetadataWriter.cs
- Queue.cs
- AssemblyUtil.cs
- WinFormsSecurity.cs
- DataGridViewRowCancelEventArgs.cs
- NameObjectCollectionBase.cs
- UrlMappingsSection.cs
- DocumentViewerAutomationPeer.cs
- BookmarkUndoUnit.cs
- HMAC.cs
- CustomCategoryAttribute.cs
- Int64.cs
- TextElementEditingBehaviorAttribute.cs
- HttpProfileGroupBase.cs
- SqlPersistenceWorkflowInstanceDescription.cs
- XmlSchemaComplexContent.cs
- DecoderBestFitFallback.cs
- HtmlControl.cs
- CodeAttributeArgumentCollection.cs
- NameValuePermission.cs
- SchemaCollectionCompiler.cs
- WebPartPersonalization.cs
- StateMachineAction.cs
- DefaultEventAttribute.cs
- DrawingContextDrawingContextWalker.cs
- SerialStream.cs
- DeferrableContentConverter.cs
- TypeConverterMarkupExtension.cs
- TemplateParser.cs
- StrokeCollectionDefaultValueFactory.cs
- DrawingVisual.cs
- SmiEventSink_Default.cs
- HttpProfileGroupBase.cs
- TranslateTransform3D.cs
- SrgsToken.cs
- ContainerControlDesigner.cs
- IOException.cs
- OdbcDataReader.cs
- DefaultBinder.cs
- TargetFrameworkAttribute.cs
- CurrentTimeZone.cs
- EventPropertyMap.cs
- AttributeSetAction.cs
- ChineseLunisolarCalendar.cs
- Util.cs
- DataGridViewHitTestInfo.cs
- ToolStripItem.cs
- SessionStateUtil.cs
- PropertyValue.cs
- WebPartConnectionCollection.cs
- CacheForPrimitiveTypes.cs
- CapabilitiesSection.cs
- StatusBarDrawItemEvent.cs
- Brush.cs
- WebPartZoneAutoFormat.cs
- OrthographicCamera.cs
- XPathBinder.cs
- Axis.cs
- RawStylusInputCustomData.cs
- Win32PrintDialog.cs
- SafeCryptContextHandle.cs
- XmlValidatingReader.cs
- DataGridDetailsPresenterAutomationPeer.cs
- OutputWindow.cs
- SqlGenericUtil.cs
- PropertyEmitterBase.cs