int IEqualityComparer <IResourceKey> .GetHashCode( IResourceKey obj) { return(obj.GetHashCode()); }
/// <summary> /// Returns a hash code for the specified <see cref="IResourceKey"/>. /// </summary> /// <param name="obj">The <see cref="IResourceKey"/> for which a hash code is to be returned.</param> /// <returns>A hash code for the specified object.</returns> /// <exception cref="ArgumentNullException">The type of <paramref name="obj"/> is a reference type and /// <paramref name="obj"/> is null.</exception> /// <seealso cref="GetHashCode()"/> public int GetHashCode(IResourceKey obj) { return(obj.GetHashCode()); }
public int GetHashCode(IResourceKey obj) { return obj.GetHashCode(); }