Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / 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; } } } }/// 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
- Rect.cs
- SQLDoubleStorage.cs
- Constants.cs
- SchemaTableColumn.cs
- State.cs
- ClientConvert.cs
- ConnectionConsumerAttribute.cs
- RunWorkerCompletedEventArgs.cs
- PartitionResolver.cs
- SecurityTokenProvider.cs
- WebRequestModuleElement.cs
- Drawing.cs
- RectAnimationClockResource.cs
- ColumnBinding.cs
- UIElementPropertyUndoUnit.cs
- ManagementEventArgs.cs
- FixedHyperLink.cs
- AttachedPropertyBrowsableAttribute.cs
- ReadOnlyTernaryTree.cs
- ComboBoxItem.cs
- ControlParameter.cs
- ContentPropertyAttribute.cs
- PopupEventArgs.cs
- ImportContext.cs
- ListBase.cs
- ControlBindingsCollection.cs
- LogEntry.cs
- HtmlEmptyTagControlBuilder.cs
- SqlProfileProvider.cs
- CfgArc.cs
- PerfCounterSection.cs
- DataPagerField.cs
- Query.cs
- RecordBuilder.cs
- MediaElementAutomationPeer.cs
- SID.cs
- SoapIncludeAttribute.cs
- Odbc32.cs
- MediaScriptCommandRoutedEventArgs.cs
- TreeViewImageKeyConverter.cs
- AsmxEndpointPickerExtension.cs
- BuildProvider.cs
- Site.cs
- LinqDataSourceInsertEventArgs.cs
- ContextMenuStripActionList.cs
- infer.cs
- NamespaceQuery.cs
- XsltSettings.cs
- CapabilitiesRule.cs
- FontConverter.cs
- ProtocolsConfiguration.cs
- DocumentPageViewAutomationPeer.cs
- CodeGotoStatement.cs
- WebBaseEventKeyComparer.cs
- DeclaredTypeElementCollection.cs
- HtmlInputSubmit.cs
- returneventsaver.cs
- WindowHideOrCloseTracker.cs
- RightsManagementEncryptedStream.cs
- DesignerSerializerAttribute.cs
- XmlSchemaComplexContentExtension.cs
- MemberRelationshipService.cs
- FragmentNavigationEventArgs.cs
- Image.cs
- EntitySqlQueryBuilder.cs
- IIS7UserPrincipal.cs
- SchemaCompiler.cs
- TextBoxBase.cs
- AsyncOperationManager.cs
- XmlQueryRuntime.cs
- MetadataFile.cs
- DiscoveryClientChannelBase.cs
- SoapSchemaExporter.cs
- ContextMenuService.cs
- ImageClickEventArgs.cs
- DataContractAttribute.cs
- TimeSpanMinutesConverter.cs
- DiscoveryOperationContextExtension.cs
- EncryptedXml.cs
- mil_commands.cs
- ApplicationHost.cs
- NetStream.cs
- TextUtf8RawTextWriter.cs
- Main.cs
- ComboBoxRenderer.cs
- VBIdentifierName.cs
- AspNetSynchronizationContext.cs
- DataBoundControlAdapter.cs
- FirstMatchCodeGroup.cs
- ForceCopyBuildProvider.cs
- DerivedKeySecurityToken.cs
- SafeFileMappingHandle.cs
- Publisher.cs
- SqlDataSourceWizardForm.cs
- SiteMapNodeCollection.cs
- SignedInfo.cs
- FixedDocumentPaginator.cs
- ReadOnlyDictionary.cs
- WebPartAddingEventArgs.cs
- DoubleLinkList.cs