CPF/CPF.ReoGrid/PrivateImplementationDetails.cs
2024-06-24 10:15:59 +08:00

25 lines
574 B
C#

using System;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
namespace CPF.ReoGrid
{
[CompilerGenerated]
internal sealed class PrivateImplementationDetails
{
internal static uint ComputeStringHash(string s)
{
uint num = 0;
if (s != null)
{
num = 2166136261U;
for (int i = 0; i < s.Length; i++)
{
num = ((uint)s[i] ^ num) * 16777619U;
}
}
return num;
}
}
}