Microsoft.Bcl.HashCode 6.0.0
About
Provides the HashCode type for .NET Standard 2.0. This package is not required starting with .NET Standard 2.1 and .NET Core 3.0.
The HashCode type is shipped as part of the shared framework starting with .NET 5.
Key Features
The HashCode type offered in this assembly combines the hash code for multiple values into a single hash code.
How to Use
The static methods in this class combine the default hash codes of up to eight values.
using System;
using System.Collections.Generic;
public struct OrderOrderLine : IEquatable<OrderOrderLine>
{
public int OrderId { get; }
public int OrderLineId { get; }
public OrderOrderLine(int orderId, int orderLineId) => (OrderId, OrderLineId) = (orderId, orderLineId);
public override bool Equals(object obj) => obj is OrderOrderLine o && Equals(o);
public bool Equals(OrderOrderLine other) => OrderId == other.OrderId && OrderLineId == other.OrderLineId;
public override int GetHashCode() => HashCode.Combine(OrderId, OrderLineId);
}
class Program
{
static void Main(string[] args)
{
var set = new HashSet<OrderOrderLine>
{
new OrderOrderLine(1, 1),
new OrderOrderLine(1, 1),
new OrderOrderLine(1, 2)
};
Console.WriteLine($"Item count: {set.Count}.");
}
}
// The example displays the following output:
// Item count: 2.
The instance methods in this class combine the hash codes of more than eight values.
using System;
using System.Collections.Generic;
public struct Path : IEquatable<Path>
{
public IReadOnlyList<string> Segments { get; }
public Path(params string[] segments) => Segments = segments;
public override bool Equals(object obj) => obj is Path o && Equals(o);
public bool Equals(Path other)
{
if (ReferenceEquals(Segments, other.Segments)) return true;
if (Segments is null || other.Segments is null) return false;
if (Segments.Count != other.Segments.Count) return false;
for (var i = 0; i < Segments.Count; i++)
{
if (!string.Equals(Segments[i], other.Segments[i]))
return false;
}
return true;
}
public override int GetHashCode()
{
var hash = new HashCode();
for (var i = 0; i < Segments?.Count; i++)
hash.Add(Segments[i]);
return hash.ToHashCode();
}
}
class Program
{
static void Main(string[] args)
{
var set = new HashSet<Path>
{
new Path("C:", "tmp", "file.txt"),
new Path("C:", "tmp", "file.txt"),
new Path("C:", "tmp", "file.tmp")
};
Console.WriteLine($"Item count: {set.Count}.");
}
}
// The example displays the following output:
// Item count: 2.
The instance methods also combine the hash codes produced by a specific IEqualityComparer
using System;
using System.Collections.Generic;
public struct Path : IEquatable<Path>
{
public IReadOnlyList<string> Segments { get; }
public Path(params string[] segments) => Segments = segments;
public override bool Equals(object obj) => obj is Path o && Equals(o);
public bool Equals(Path other)
{
if (ReferenceEquals(Segments, other.Segments)) return true;
if (Segments is null || other.Segments is null) return false;
if (Segments.Count != other.Segments.Count) return false;
for (var i = 0; i < Segments.Count; i++)
{
if (!string.Equals(Segments[i], other.Segments[i], StringComparison.OrdinalIgnoreCase))
return false;
}
return true;
}
public override int GetHashCode()
{
var hash = new HashCode();
for (var i = 0; i < Segments?.Count; i++)
hash.Add(Segments[i], StringComparer.OrdinalIgnoreCase);
return hash.ToHashCode();
}
}
class Program
{
static void Main(string[] args)
{
var set = new HashSet<Path>
{
new Path("C:", "tmp", "file.txt"),
new Path("C:", "TMP", "file.txt"),
new Path("C:", "tmp", "FILE.TXT")
};
Console.WriteLine($"Item count: {set.Count}.");
}
}
// The example displays the following output:
// Item count: 1.
The HashCode structure must be passed by-reference to other methods, as it is a value type.
using System;
using System.Collections.Generic;
public struct Path : IEquatable<Path>
{
public IReadOnlyList<string> Segments { get; }
public Path(params string[] segments) => Segments = segments;
public override bool Equals(object obj) => obj is Path o && Equals(o);
public bool Equals(Path other)
{
if (ReferenceEquals(Segments, other.Segments)) return true;
if (Segments is null || other.Segments is null) return false;
if (Segments.Count != other.Segments.Count) return false;
for (var i = 0; i < Segments.Count; i++)
{
if (!PlatformUtils.PathEquals(Segments[i], other.Segments[i]))
return false;
}
return true;
}
public override int GetHashCode()
{
var hash = new HashCode();
for (var i = 0; i < Segments?.Count; i++)
PlatformUtils.AddPath(ref hash, Segments[i]);
return hash.ToHashCode();
}
}
internal static class PlatformUtils
{
public static bool PathEquals(string a, string b) => string.Equals(a, b, StringComparison.OrdinalIgnoreCase);
public static void AddPath(ref HashCode hash, string path) => hash.Add(path, StringComparer.OrdinalIgnoreCase);
}
class Program
{
static void Main(string[] args)
{
var set = new HashSet<Path>
{
new Path("C:", "tmp", "file.txt"),
new Path("C:", "TMP", "file.txt"),
new Path("C:", "tmp", "FILE.TXT")
};
Console.WriteLine($"Item count: {set.Count}.");
}
}
// The example displays the following output:
// Item count: 1.
Main Types
The main types provided by this library are:
- System.HashCode
Additional Documentation
- Security design doc for System.HashCode
- API reference can be found in: https://learn.microsoft.com/en-us/dotnet/api/system.hashcode
License
Microsoft.Bcl.HashCode is released as open source under the MIT license.
Showing the top 20 packages that depend on Microsoft.Bcl.HashCode.
| Packages | Downloads |
|---|---|
|
Generator.Equals.Runtime
A source code generator for automatically implementing IEquatable<T> using only attributes.
|
388 |
|
Generator.Equals.Runtime
A source code generator for automatically implementing IEquatable<T> using only attributes.
|
135 |
|
Microsoft.Extensions.Compliance.Abstractions
Abstractions to help ensure compliant data management.
|
115 |
|
System.Formats.Nrbf
Provides a safe reader for .NET Remoting Binary Format (NRBF) payloads.
|
113 |
|
Microsoft.Extensions.Diagnostics.ExceptionSummarization
Lets you retrieve exception summary information.
|
113 |
|
System.Formats.Nrbf
Provides a safe reader for .NET Remoting Binary Format (NRBF) payloads.
|
112 |
|
Npgsql
Npgsql is the open source .NET data provider for PostgreSQL.
|
62 |
|
Nerdbank.MessagePack
A fast and more user-friendly MessagePack serialization library for .NET and .NET Framework. This package is brought to you by one of the two major contributors to MessagePack-CSharp. As its natural successor, this library comes packed with features that its predecessor lacks, and has ongoing support.
Premium support for trimming and Native AOT, secure deserialization of untrusted data, async serialization, streaming deserialization, skip serializing of default values, reference preservation, and support for reference cycles.
Also features an automatic structural equality API.
|
55 |
|
Nerdbank.MessagePack
A fast and more user-friendly MessagePack serialization library for .NET and .NET Framework. This package is brought to you by one of the two major contributors to MessagePack-CSharp. As its natural successor, this library comes packed with features that its predecessor lacks, and has ongoing support.
Premium support for trimming and Native AOT, secure deserialization of untrusted data, async serialization, streaming deserialization, skip serializing of default values, reference preservation, and support for reference cycles.
Also features an automatic structural equality API.
|
22 |
|
Nerdbank.MessagePack
A fast and more user-friendly MessagePack serialization library for .NET and .NET Framework. This package is brought to you by one of the two major contributors to MessagePack-CSharp. As its natural successor, this library comes packed with features that its predecessor lacks, and has ongoing support.
Premium support for trimming and Native AOT, secure deserialization of untrusted data, async serialization, streaming deserialization, skip serializing of default values, reference preservation, and support for reference cycles.
Also features an automatic structural equality API.
|
13 |
|
AutoMapper
A convention-based object-object mapper.
|
12 |
|
Npgsql
Npgsql is the open source .NET data provider for PostgreSQL.
|
10 |
|
AutoMapper
A convention-based object-object mapper.
|
10 |
|
Generator.Equals.Runtime
A source code generator for automatically implementing IEquatable<T> using only attributes.
|
10 |
.NET Framework 4.6.2
- No dependencies.
.NET 6.0
- No dependencies.
.NET Standard 2.0
- No dependencies.
.NET Standard 2.1
- No dependencies.
| Version | Downloads | Last updated |
|---|---|---|
| 6.0.0 | 4 | 04/27/2026 |
| 1.1.1 | 113 | 04/25/2026 |
| 1.1.0 | 4 | 04/25/2026 |
| 1.1.0-preview3.19551.4 | 4 | 04/28/2026 |
| 1.1.0-preview2.19523.17 | 4 | 04/28/2026 |
| 1.1.0-preview1.19504.10 | 4 | 04/28/2026 |
| 1.0.0 | 4 | 04/25/2026 |
| 1.0.0-rc1.19456.4 | 4 | 04/28/2026 |
| 1.0.0-preview9.19421.4 | 4 | 04/28/2026 |
| 1.0.0-preview9.19416.11 | 4 | 04/28/2026 |
| 1.0.0-preview8.19405.3 | 4 | 04/28/2026 |
| 1.0.0-preview7.19362.9 | 4 | 04/28/2026 |
| 1.0.0-preview6.19303.8 | 4 | 04/28/2026 |
| 1.0.0-preview6.19264.9 | 4 | 04/28/2026 |
| 1.0.0-preview6.19259.10 | 4 | 04/29/2026 |