摘要: 1 public static int GetStringHashCode(string value) 2 { 3 int h = 0; // 默认值是0 4 if (value.Length > 0) 5 { 6 for (int i = 0; i < value.Length; i++) 7 { 阅读全文
posted @ 2022-09-27 15:48 极客船长 阅读(139) 评论(0) 推荐(0) 编辑