Skip to content

Instantly share code, notes, and snippets.

View willnationsdev's full-sized avatar

Will Nations willnationsdev

View GitHub Profile
@willnationsdev
willnationsdev / HashCode.cs
Created January 30, 2026 21:31
A barebones HashCode type for use in source generators and other dependency-free contexts.
/// <summary>
/// Minimal HashCode helper for netstandard2.0.
/// Intended for use in source generators and other dependency-free contexts.
/// </summary>
internal struct HashCode
{
private const int Seed = unchecked((int)2166136261);
private const int Factor = 16777619;
private int _hash;