当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C# String GetHashCode()用法及代码示例


C# GetHashCode() 方法用于获取该字符串的哈希码。它返回一个整数值。

签名

public override int GetHashCode()

参数

它不接受任何参数(argument)。

返回

它返回字符串对象的哈希码。

C# 字符串 GetHashCode() 方法示例

using System;  
    public class StringExample  
    {  
        public static void Main(string[] args)  
        {  
          string s1 = "Hello C#";
          Console.WriteLine(s1.GetHashCode());
        }  
    }

输出:

718576468




相关用法


注:本文由纯净天空筛选整理自 C# String GetHashCode()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。