Exemplo n.º 1
0
 int IEqualityComparer <IResourceKey> .GetHashCode(
     IResourceKey obj)
 {
     return(obj.GetHashCode());
 }
Exemplo n.º 2
0
 /// <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());
 }
Exemplo n.º 3
0
 public int GetHashCode(IResourceKey obj) { return obj.GetHashCode(); }