Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataEntity / System / Data / Common / Utils / Pair.cs / 1305376 / 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
- invalidudtexception.cs
- NetMsmqSecurityElement.cs
- Wildcard.cs
- ScrollContentPresenter.cs
- handlecollector.cs
- SoundPlayer.cs
- SystemThemeKey.cs
- InkCanvas.cs
- HandlerBase.cs
- JournalNavigationScope.cs
- CodeNamespaceImport.cs
- RectangleHotSpot.cs
- unsafeIndexingFilterStream.cs
- ImageConverter.cs
- DllHostInitializer.cs
- CacheDependency.cs
- UidManager.cs
- Constant.cs
- IdleTimeoutMonitor.cs
- RefreshEventArgs.cs
- xmlglyphRunInfo.cs
- StylusDownEventArgs.cs
- RIPEMD160Managed.cs
- RequestCacheValidator.cs
- SystemGatewayIPAddressInformation.cs
- ReadOnlyCollection.cs
- CacheSection.cs
- MetafileHeaderWmf.cs
- HttpListenerPrefixCollection.cs
- DataGridSortingEventArgs.cs
- COSERVERINFO.cs
- MatrixTransform.cs
- MemberAssignmentAnalysis.cs
- WpfSharedXamlSchemaContext.cs
- DataServiceProviderMethods.cs
- XmlReaderSettings.cs
- messageonlyhwndwrapper.cs
- KoreanLunisolarCalendar.cs
- ClientCultureInfo.cs
- CompositeControlDesigner.cs
- ToolStripLabel.cs
- ConstructorBuilder.cs
- Graphics.cs
- GeneralEndpointIdentity.cs
- ContextProperty.cs
- RangeValidator.cs
- NullRuntimeConfig.cs
- EnumConverter.cs
- HtmlTableCell.cs
- SubstitutionDesigner.cs
- ResourceExpressionBuilder.cs
- ComponentEditorForm.cs
- StrongNameUtility.cs
- DiscardableAttribute.cs
- RegexTree.cs
- WorkflowWebHostingModule.cs
- CheckBox.cs
- VersionUtil.cs
- OleDbConnectionFactory.cs
- LifetimeServices.cs
- PrintDialog.cs
- EventSetter.cs
- SafeRegistryKey.cs
- GraphicsState.cs
- ZipArchive.cs
- UniqueID.cs
- NameObjectCollectionBase.cs
- StylusButton.cs
- ManagedFilter.cs
- ExceptionUtil.cs
- SafeNativeMethods.cs
- WebPartHelpVerb.cs
- ObjectStateFormatter.cs
- AssemblyNameEqualityComparer.cs
- DataBoundControlHelper.cs
- PictureBox.cs
- DBParameter.cs
- IndexingContentUnit.cs
- HtmlTable.cs
- SimpleBitVector32.cs
- XmlAttributeOverrides.cs
- TagMapInfo.cs
- GiveFeedbackEvent.cs
- BitmapPalette.cs
- UrlMapping.cs
- AnchoredBlock.cs
- HeaderedContentControl.cs
- AttachedPropertyBrowsableWhenAttributePresentAttribute.cs
- ActivityCodeGenerator.cs
- PanningMessageFilter.cs
- Compiler.cs
- SID.cs
- EntityViewGenerationConstants.cs
- ClientConfigPaths.cs
- VectorCollectionConverter.cs
- mda.cs
- HttpCachePolicy.cs
- EmissiveMaterial.cs
- shaperfactory.cs
- TableRow.cs