This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
usingSystem;
namespacePathfinding.Util{
/// <summary>Calculates checksums of byte arrays</summary>
publicclassChecksum{
/// <summary>
/// Calculate checksum for the byte array starting from a previous values.
/// Useful if data is split up between several byte arrays
/// </summary>
publicstaticuintGetChecksum(byte[]arr,uinthash){
// Sort of implements the Fowler–Noll–Vo hash function