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 / Pair.cs / 1 / Pair.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using System; using System.Collections; using System.Collections.Generic; using System.Text; using System.Diagnostics; using System.Linq; namespace System.Data.Common.Utils { internal class Pair: InternalBase { #region Fields private readonly TFirst first; private readonly TSecond second; #endregion #region Constructor internal Pair(TFirst first, TSecond second) { this.first = first; this.second = second; } #endregion #region Properties internal TFirst First { get { return first; } } internal TSecond Second { get { return second; } } #endregion #region Methods public override int GetHashCode() { return (first.GetHashCode()<<5) ^ second.GetHashCode(); } public bool Equals(Pair other) { return first.Equals(other.first) && second.Equals(other.second); } public override bool Equals(object other) { Pair otherPair = other as Pair ; return (otherPair != null && Equals(otherPair)); } #endregion #region InternalBase internal override void ToCompactString(StringBuilder builder) { builder.Append("<"); builder.Append(first.ToString()); builder.Append(", "+second.ToString()); builder.Append(">"); } #endregion internal class PairComparer : IEqualityComparer > { private PairComparer() { } internal static readonly PairComparer Instance = new PairComparer(); private static readonly EqualityComparer firstComparer = EqualityComparer .Default; private static readonly EqualityComparer secondComparer = EqualityComparer .Default; public bool Equals(Pair x, Pair y) { return firstComparer.Equals(x.First, y.First) && secondComparer.Equals(x.Second, y.Second); } public int GetHashCode(Pair source) { return source.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; using System.Collections.Generic; using System.Text; using System.Diagnostics; using System.Linq; namespace System.Data.Common.Utils { internal class Pair: InternalBase { #region Fields private readonly TFirst first; private readonly TSecond second; #endregion #region Constructor internal Pair(TFirst first, TSecond second) { this.first = first; this.second = second; } #endregion #region Properties internal TFirst First { get { return first; } } internal TSecond Second { get { return second; } } #endregion #region Methods public override int GetHashCode() { return (first.GetHashCode()<<5) ^ second.GetHashCode(); } public bool Equals(Pair other) { return first.Equals(other.first) && second.Equals(other.second); } public override bool Equals(object other) { Pair otherPair = other as Pair ; return (otherPair != null && Equals(otherPair)); } #endregion #region InternalBase internal override void ToCompactString(StringBuilder builder) { builder.Append("<"); builder.Append(first.ToString()); builder.Append(", "+second.ToString()); builder.Append(">"); } #endregion internal class PairComparer : IEqualityComparer > { private PairComparer() { } internal static readonly PairComparer Instance = new PairComparer(); private static readonly EqualityComparer firstComparer = EqualityComparer .Default; private static readonly EqualityComparer secondComparer = EqualityComparer .Default; public bool Equals(Pair x, Pair y) { return firstComparer.Equals(x.First, y.First) && secondComparer.Equals(x.Second, y.Second); } public int GetHashCode(Pair source) { return source.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
- RunInstallerAttribute.cs
- DecoderBestFitFallback.cs
- XPathNodeIterator.cs
- SQLString.cs
- SelectionPattern.cs
- Array.cs
- DocumentCollection.cs
- CompressStream.cs
- TextOnlyOutput.cs
- MetafileHeaderWmf.cs
- CollectionEditVerbManager.cs
- PageHandlerFactory.cs
- _IPv6Address.cs
- RoutingTable.cs
- XmlSchemaChoice.cs
- OutputCacheSection.cs
- DataTemplateSelector.cs
- MarkedHighlightComponent.cs
- FontEmbeddingManager.cs
- XsltCompileContext.cs
- RpcResponse.cs
- IntegerValidator.cs
- _NetworkingPerfCounters.cs
- TypeSystem.cs
- FontDifferentiator.cs
- EntityDataSourceViewSchema.cs
- UriGenerator.cs
- XmlIgnoreAttribute.cs
- SqlDataSourceWizardForm.cs
- OdbcConnection.cs
- ADMembershipProvider.cs
- PixelFormat.cs
- FileSystemEventArgs.cs
- DataGridViewRowStateChangedEventArgs.cs
- HwndHostAutomationPeer.cs
- SqlBulkCopyColumnMapping.cs
- VerificationException.cs
- TimersDescriptionAttribute.cs
- FormViewPagerRow.cs
- HttpSessionStateWrapper.cs
- RemotingClientProxy.cs
- ContextQuery.cs
- SqlStatistics.cs
- XslTransform.cs
- PointIndependentAnimationStorage.cs
- DynamicMetaObjectBinder.cs
- UrlPath.cs
- EditBehavior.cs
- ComplexPropertyEntry.cs
- QilNode.cs
- ContextMenuAutomationPeer.cs
- ReadOnlyDataSource.cs
- EdmTypeAttribute.cs
- PrePrepareMethodAttribute.cs
- ListControlDataBindingHandler.cs
- RowToParametersTransformer.cs
- OutputCacheSettingsSection.cs
- XmlWhitespace.cs
- ObsoleteAttribute.cs
- XmlSchemaSimpleTypeUnion.cs
- PtsPage.cs
- ButtonBase.cs
- HtmlTableRowCollection.cs
- Cursors.cs
- TextLineResult.cs
- ChannelSinkStacks.cs
- MessagePropertyVariants.cs
- DockPattern.cs
- PopupRootAutomationPeer.cs
- ResolvedKeyFrameEntry.cs
- SerializationTrace.cs
- XmlSignatureProperties.cs
- RenderData.cs
- PerfCounters.cs
- AttributeCollection.cs
- InfocardChannelParameter.cs
- UiaCoreProviderApi.cs
- XmlSchemaAll.cs
- LiteralTextContainerControlBuilder.cs
- ReadingWritingEntityEventArgs.cs
- SplitterEvent.cs
- DrawingContextWalker.cs
- TableRow.cs
- BooleanExpr.cs
- IOThreadTimer.cs
- CacheMode.cs
- BinaryMessageFormatter.cs
- RenderData.cs
- PriorityQueue.cs
- DocumentViewerBase.cs
- Update.cs
- FtpWebResponse.cs
- EntityExpressionVisitor.cs
- CellLabel.cs
- SpecialFolderEnumConverter.cs
- SQLBytes.cs
- LogSwitch.cs
- StatusBarItemAutomationPeer.cs
- CodePropertyReferenceExpression.cs
- Accessible.cs