System.Data.Tests.DataRowTest2.Address.GetHashCode C# (CSharp) Method

GetHashCode() public method

public GetHashCode ( ) : int
return int
            public override int GetHashCode()
            {
                if (Street == null)
                    return HouseNumber.GetHashCode();
                return (Street.GetHashCode() ^ HouseNumber.GetHashCode());
            }