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 |
---|---|
AutoFixture
AutoFixture makes it easier for developers to do Test-Driven Development by automating non-relevant Test Fixture Setup, allowing the Test Developer to focus on the essentials of each test case.
|
9 |
AutoFixture
AutoFixture makes it easier for developers to do Test-Driven Development by automating non-relevant Test Fixture Setup, allowing the Test Developer to focus on the essentials of each test case.
|
10 |
Microsoft.EntityFrameworkCore
Entity Framework Core is a lightweight and extensible version of the popular Entity Framework data access technology.
Commonly Used Types:
Microsoft.EntityFrameworkCore.DbContext
Microsoft.EntityFrameworkCore.DbSet
|
9 |
Microsoft.EntityFrameworkCore
Entity Framework Core is a lightweight and extensible version of the popular Entity Framework data access technology.
Commonly Used Types:
Microsoft.EntityFrameworkCore.DbContext
Microsoft.EntityFrameworkCore.DbSet
|
10 |
Npgsql
Npgsql is the open source .NET data provider for PostgreSQL.
|
9 |
Npgsql
Npgsql is the open source .NET data provider for PostgreSQL.
|
10 |
Npgsql
Npgsql is the open source .NET data provider for PostgreSQL.
|
11 |
Npgsql
Npgsql is the open source .NET data provider for PostgreSQL.
|
12 |
Npgsql
Npgsql is the open source .NET data provider for PostgreSQL.
|
15 |
System.Formats.Nrbf
Provides a safe reader for .NET Remoting Binary Format (NRBF) payloads.
Commonly Used Types:
System.Formats.Nrbf.NrbfDecoder
|
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 | 2 | 26.12.2024 |
1.1.1 | 18 | 31.01.2024 |
1.1.0 | 9 | 20.03.2024 |
1.1.0-preview3.19551.4 | 8 | 22.09.2024 |
1.1.0-preview2.19523.17 | 9 | 22.09.2024 |
1.1.0-preview1.19504.10 | 0 | 15.10.2019 |
1.0.0 | 7 | 22.09.2024 |
1.0.0-rc1.19456.4 | 7 | 22.09.2024 |
1.0.0-preview9.19421.4 | 1 | 25.01.2025 |
1.0.0-preview9.19416.11 | 0 | 04.09.2019 |
1.0.0-preview8.19405.3 | 8 | 22.09.2024 |
1.0.0-preview7.19362.9 | 0 | 23.07.2019 |
1.0.0-preview6.19303.8 | 0 | 12.06.2019 |
1.0.0-preview6.19264.9 | 7 | 22.09.2024 |
1.0.0-preview6.19259.10 | 9 | 22.09.2024 |