📜  C#字符串GetHashCode()方法

📅  最后修改于: 2020-10-31 03:31:02             🧑  作者: Mango

C#字符串GetHashCode()

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

签名

public override int GetHashCode()

参量

它不带任何参数(参数)。

返回

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

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

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

输出:

718576468