PropertyDescriptorComparer.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Base / MS / Internal / ComponentModel / PropertyDescriptorComparer.cs / 1305600 / PropertyDescriptorComparer.cs

                             
namespace MS.Internal.ComponentModel
{
    using System;
    using System.Collections.Generic; 
    using System.ComponentModel;
 
    // This is a hashcode comparer we use to key property descriptors.  We 
    // want property descriptors keyed off of reference equality.
    // 
    internal class PropertyDescriptorComparer : IEqualityComparer
    {
        public bool Equals(PropertyDescriptor p1, PropertyDescriptor p2)
        { 
            return object.ReferenceEquals(p1, p2);
        } 
 
        public int GetHashCode(PropertyDescriptor p)
        { 
            return p.GetHashCode();
        }
    }
} 


// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
 
namespace MS.Internal.ComponentModel
{
    using System;
    using System.Collections.Generic; 
    using System.ComponentModel;
 
    // This is a hashcode comparer we use to key property descriptors.  We 
    // want property descriptors keyed off of reference equality.
    // 
    internal class PropertyDescriptorComparer : IEqualityComparer
    {
        public bool Equals(PropertyDescriptor p1, PropertyDescriptor p2)
        { 
            return object.ReferenceEquals(p1, p2);
        } 
 
        public int GetHashCode(PropertyDescriptor p)
        { 
            return p.GetHashCode();
        }
    }
} 


// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.

                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK