This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /// <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; |
OlderNewer