Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / ndp / fx / src / DataEntity / System / Data / Common / Utils / Boolean / Literal.cs / 1 / Literal.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using System; using System.Collections.Generic; using System.Text; using System.Globalization; using System.Collections.ObjectModel; using System.Diagnostics; namespace System.Data.Common.Utils.Boolean { ////// Represents a literal in a normal form expression of the form: /// /// Term /// /// or /// /// !Term /// ///internal sealed class Literal : NormalFormNode , IEquatable > { private readonly TermExpr _term; private readonly bool _isTermPositive; /// /// Initialize a new literal. /// /// Term /// Sign of term internal Literal(TermExprterm, bool isTermPositive) : base(isTermPositive ? (BoolExpr )term : (BoolExpr )new NotExpr (term)) { Debug.Assert(null != term); _term = term; _isTermPositive = isTermPositive; } /// /// Gets literal term. /// internal TermExprTerm { get { return _term; } } /// /// Gets sign of term. /// internal bool IsTermPositive { get { return _isTermPositive; } } ////// Creates a negated version of this literal. /// ///!this internal LiteralMakeNegated() { return IdentifierService .Instance.NegateLiteral(this); } public override string ToString() { return StringUtil.FormatInvariant("{0}{1}", _isTermPositive ? String.Empty : "!", _term); } public override bool Equals(object obj) { Debug.Fail("use typed Equals"); return Equals(obj as Literal ); } public bool Equals(Literal other) { return null != other && other._isTermPositive == _isTermPositive && other._term.Equals(_term); } public override int GetHashCode() { return _term.GetHashCode(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------- // // Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using System; using System.Collections.Generic; using System.Text; using System.Globalization; using System.Collections.ObjectModel; using System.Diagnostics; namespace System.Data.Common.Utils.Boolean { ////// Represents a literal in a normal form expression of the form: /// /// Term /// /// or /// /// !Term /// ///internal sealed class Literal : NormalFormNode , IEquatable > { private readonly TermExpr _term; private readonly bool _isTermPositive; /// /// Initialize a new literal. /// /// Term /// Sign of term internal Literal(TermExprterm, bool isTermPositive) : base(isTermPositive ? (BoolExpr )term : (BoolExpr )new NotExpr (term)) { Debug.Assert(null != term); _term = term; _isTermPositive = isTermPositive; } /// /// Gets literal term. /// internal TermExprTerm { get { return _term; } } /// /// Gets sign of term. /// internal bool IsTermPositive { get { return _isTermPositive; } } ////// Creates a negated version of this literal. /// ///!this internal LiteralMakeNegated() { return IdentifierService .Instance.NegateLiteral(this); } public override string ToString() { return StringUtil.FormatInvariant("{0}{1}", _isTermPositive ? String.Empty : "!", _term); } public override bool Equals(object obj) { Debug.Fail("use typed Equals"); return Equals(obj as Literal ); } public bool Equals(Literal other) { return null != other && other._isTermPositive == _isTermPositive && other._term.Equals(_term); } public override int GetHashCode() { return _term.GetHashCode(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- TableLayoutCellPaintEventArgs.cs
- BCLDebug.cs
- InProcStateClientManager.cs
- GeneralTransform3D.cs
- RefreshPropertiesAttribute.cs
- BaseCollection.cs
- RadioButtonRenderer.cs
- AttributeAction.cs
- UnsafeNativeMethods.cs
- _ContextAwareResult.cs
- CharKeyFrameCollection.cs
- ForEachAction.cs
- Constraint.cs
- CatalogPartCollection.cs
- ExceptionRoutedEventArgs.cs
- WebPartVerbsEventArgs.cs
- StringExpressionSet.cs
- PageCatalogPart.cs
- _TimerThread.cs
- FileDetails.cs
- TextTreeNode.cs
- LongAverageAggregationOperator.cs
- SecurityElement.cs
- securitycriticaldataformultiplegetandset.cs
- HttpConfigurationContext.cs
- SBCSCodePageEncoding.cs
- PrivacyNoticeElement.cs
- XmlSignatureManifest.cs
- HttpServerVarsCollection.cs
- SpellerError.cs
- GridViewPageEventArgs.cs
- DoubleAnimationUsingKeyFrames.cs
- MouseCaptureWithinProperty.cs
- ContractNamespaceAttribute.cs
- CacheMode.cs
- NumberSubstitution.cs
- DiagnosticTrace.cs
- ListenDesigner.cs
- AliasExpr.cs
- SemaphoreSecurity.cs
- SafeMarshalContext.cs
- BoolExpression.cs
- HttpContextServiceHost.cs
- OleDbConnectionFactory.cs
- Tokenizer.cs
- QueryInterceptorAttribute.cs
- DataGridViewColumnTypeEditor.cs
- SplineQuaternionKeyFrame.cs
- PreloadedPackages.cs
- ServiceCredentialsSecurityTokenManager.cs
- XPathDocument.cs
- Tile.cs
- SiteMapNodeItem.cs
- ScrollItemPattern.cs
- TypedDatasetGenerator.cs
- InkCanvasInnerCanvas.cs
- TreeNodeBindingCollection.cs
- PropertyManager.cs
- TextSegment.cs
- ObjectViewListener.cs
- AmbientValueAttribute.cs
- Padding.cs
- Marshal.cs
- RepeaterCommandEventArgs.cs
- StringKeyFrameCollection.cs
- WorkItem.cs
- EncryptedXml.cs
- SafeUserTokenHandle.cs
- MultipleViewProviderWrapper.cs
- mediaeventshelper.cs
- AccessibleObject.cs
- MouseActionConverter.cs
- FormView.cs
- ApplicationException.cs
- FixedSOMPage.cs
- ItemsChangedEventArgs.cs
- WorkItem.cs
- ToolStripRendererSwitcher.cs
- HttpConfigurationContext.cs
- LicenseProviderAttribute.cs
- ListViewHitTestInfo.cs
- RegexMatch.cs
- DynamicMethod.cs
- ContextMenuStripGroupCollection.cs
- Point.cs
- BufferCache.cs
- SecurityBindingElement.cs
- Int32EqualityComparer.cs
- CodeExpressionRuleDeclaration.cs
- OneOfConst.cs
- SqlCacheDependencyDatabaseCollection.cs
- DiffuseMaterial.cs
- DataGridCellsPanel.cs
- SByteStorage.cs
- Model3DGroup.cs
- Margins.cs
- OdbcConnectionPoolProviderInfo.cs
- PolicyManager.cs
- EntityTypeBase.cs
- ASCIIEncoding.cs