Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- TextElementAutomationPeer.cs
- KeyPressEvent.cs
- MetadataArtifactLoaderCompositeFile.cs
- SystemIPInterfaceStatistics.cs
- ExecutionContext.cs
- CategoryGridEntry.cs
- ETagAttribute.cs
- D3DImage.cs
- SQLCharsStorage.cs
- ProfileGroupSettingsCollection.cs
- CLSCompliantAttribute.cs
- ContentElementAutomationPeer.cs
- IdentifierElement.cs
- PermissionToken.cs
- ToolStripPanelCell.cs
- TreeWalkHelper.cs
- RegexStringValidator.cs
- WithParamAction.cs
- RunInstallerAttribute.cs
- IOThreadScheduler.cs
- NativeCompoundFileAPIs.cs
- StylusTip.cs
- ViewgenContext.cs
- InvalidateEvent.cs
- Html32TextWriter.cs
- MailHeaderInfo.cs
- XmlComplianceUtil.cs
- AlphabeticalEnumConverter.cs
- ExecutionEngineException.cs
- RenderData.cs
- MaskPropertyEditor.cs
- ListBindingConverter.cs
- RadioButton.cs
- XmlHierarchicalDataSourceView.cs
- CngProperty.cs
- PriorityBinding.cs
- TaskCanceledException.cs
- Directory.cs
- OdbcConnectionFactory.cs
- HostProtectionException.cs
- FontStyles.cs
- Memoizer.cs
- CodeExpressionStatement.cs
- DbConnectionPoolGroupProviderInfo.cs
- ZipIOZip64EndOfCentralDirectoryBlock.cs
- InvalidCastException.cs
- OleDbPermission.cs
- WsiProfilesElement.cs
- CatalogPartDesigner.cs
- MissingFieldException.cs
- DoubleIndependentAnimationStorage.cs
- QilTernary.cs
- CharUnicodeInfo.cs
- TextTreeUndo.cs
- FilteredAttributeCollection.cs
- RuntimeConfigurationRecord.cs
- Pkcs7Signer.cs
- DataGridViewComboBoxCell.cs
- Preprocessor.cs
- DependencyPropertyKind.cs
- AuthenticateEventArgs.cs
- Converter.cs
- OleDbDataReader.cs
- SqlMethodAttribute.cs
- TableLayoutSettingsTypeConverter.cs
- BitmapCodecInfo.cs
- FixedHighlight.cs
- GACMembershipCondition.cs
- DataGridViewCellParsingEventArgs.cs
- AsnEncodedData.cs
- PenLineCapValidation.cs
- RegisteredDisposeScript.cs
- SizeChangedInfo.cs
- ConfigurationManager.cs
- SocketInformation.cs
- EntityDataSourceStatementEditorForm.cs
- GPStream.cs
- DecoratedNameAttribute.cs
- Socket.cs
- EqualityArray.cs
- MenuItemStyleCollection.cs
- HttpHeaderCollection.cs
- HybridObjectCache.cs
- FormsAuthenticationTicket.cs
- StringValidatorAttribute.cs
- BCLDebug.cs
- AdornerHitTestResult.cs
- TableRowCollection.cs
- ScriptingJsonSerializationSection.cs
- PasswordBoxAutomationPeer.cs
- SerializableAttribute.cs
- MappingMetadataHelper.cs
- JobInputBins.cs
- Tuple.cs
- CodeTypeParameterCollection.cs
- FilterQuery.cs
- XPathScanner.cs
- WhitespaceReader.cs
- NumberAction.cs
- AppDomainCompilerProxy.cs