El método Uri.GetHashCode() se usa para obtener el código hash para el URI.
Sintaxis: anulación pública int GetHashCode();
Valor de retorno: este método devuelve un Int32 que contiene el valor hash generado para este URI.
Los siguientes programas ilustran el uso del método Uri.GetHashCode() :
Ejemplo 1:
// C# program to demonstrate the // Uri.GetHashCode() Method using System; using System.Globalization; class GFG { // Main Method public static void Main() { // Declaring and initializing address1 string address1 = "http://www.contoso.com/index.htm#search"; // Getting HashCode by // using GetHashCode() method int value = address1.GetHashCode(); // Displaying the result Console.WriteLine("HashCode is : {0}", value); } }
Producción:
HashCode is : 2065713268
Ejemplo 2:
// C# program to demonstrate the // Uri.GetHashCode() Method using System; using System.Globalization; class GFG { // Main Method public static void Main() { // calling get() method get(new Uri("http://www.contoso.com")); get(new Uri("http://www.google.com")); } // defining get() method public static void get(Uri address1) { // Getting HashCode by // using GetHashCode() method int value = address1.GetHashCode(); // Displaying the result Console.WriteLine("HashCode is : {0}", value); } }
Producción:
HashCode is : 2014 HashCode is : 1498
Referencia:
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA