1 Star 0 Fork 1

玄万/HeroClient2

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
PrivateImplementationDetails.cs 442 Bytes
一键复制 编辑 原始数据 按行查看 历史
玄万 提交于 2021-11-06 09:32 . init
using System;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
public sealed class PrivateImplementationDetails
{
// Token: 0x06010F8B RID: 69515 RVA: 0x00451C30 File Offset: 0x0044FE30
public 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;
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/zcg43951/myheroclient.git
[email protected]:zcg43951/myheroclient.git
zcg43951
myheroclient
HeroClient2
master

搜索帮助