Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / ndp / fx / src / DataEntity / System / Data / Common / Utils / Boolean / Literal.cs / 2 / 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
- CodeDOMUtility.cs
- TableRowCollection.cs
- EventHandlerList.cs
- ModelTreeEnumerator.cs
- HtmlInputPassword.cs
- UnsafeNativeMethods.cs
- QueryContinueDragEventArgs.cs
- BookmarkOptionsHelper.cs
- XmlJsonReader.cs
- BamlLocalizationDictionary.cs
- FilterFactory.cs
- XmlReflectionImporter.cs
- CultureTableRecord.cs
- FixedPosition.cs
- PartManifestEntry.cs
- GiveFeedbackEvent.cs
- Rotation3DAnimation.cs
- CorrelationResolver.cs
- shaper.cs
- NumericUpDown.cs
- PriorityBindingExpression.cs
- MachineKeySection.cs
- ObjectDesignerDataSourceView.cs
- ControlsConfig.cs
- SeverityFilter.cs
- storepermissionattribute.cs
- ResponseBodyWriter.cs
- DesignerLoader.cs
- DaylightTime.cs
- UInt16Converter.cs
- MethodAccessException.cs
- WebExceptionStatus.cs
- BinaryFormatter.cs
- ConnectionOrientedTransportChannelFactory.cs
- UniformGrid.cs
- DbgCompiler.cs
- HwndSourceKeyboardInputSite.cs
- FormClosedEvent.cs
- KnowledgeBase.cs
- _Semaphore.cs
- BinHexEncoder.cs
- DateTimeFormat.cs
- Geometry.cs
- LinqDataSourceView.cs
- AdornerHitTestResult.cs
- PageAsyncTask.cs
- MethodSignatureGenerator.cs
- ConfigurationSectionGroupCollection.cs
- UpdateCommand.cs
- StylusPlugin.cs
- GenericsInstances.cs
- NumericExpr.cs
- FatalException.cs
- DataSourceView.cs
- ReadWriteControlDesigner.cs
- SiteMapNodeItem.cs
- OleDbSchemaGuid.cs
- Mouse.cs
- UIHelper.cs
- ADMembershipUser.cs
- Type.cs
- XmlExtensionFunction.cs
- ParserOptions.cs
- Pair.cs
- SubtreeProcessor.cs
- UpdateInfo.cs
- RegexCompiler.cs
- PageStatePersister.cs
- ComplexTypeEmitter.cs
- MatchSingleFxEngineOpcode.cs
- RunInstallerAttribute.cs
- AnchoredBlock.cs
- AnimationStorage.cs
- DictionaryTraceRecord.cs
- ImageSource.cs
- IncrementalCompileAnalyzer.cs
- HttpHandlersSection.cs
- PeerInvitationResponse.cs
- QilReplaceVisitor.cs
- SHA256CryptoServiceProvider.cs
- EntityDesignerUtils.cs
- CmsUtils.cs
- TreeNode.cs
- SecurityRuntime.cs
- TemplateManager.cs
- SQLDateTimeStorage.cs
- DefaultTraceListener.cs
- ObjectReaderCompiler.cs
- StateMachineExecutionState.cs
- TransformProviderWrapper.cs
- DbRetry.cs
- CommonProperties.cs
- ProfileSettings.cs
- SerialStream.cs
- SizeConverter.cs
- Brush.cs
- XmlStreamStore.cs
- ToolStripDropDownItemDesigner.cs
- UnsafeNativeMethods.cs
- MatchingStyle.cs