কম্পিউটার

C# এ Uri.GetHashCode() পদ্ধতি


C# এ Uri.GetHashCode() পদ্ধতি URI-এর জন্য হ্যাশ কোড পায়।

সিনট্যাক্স

নিচের সিনট্যাক্স −

public override int GetHashCode ();

উদাহরণ

এখন Uri.GetHashCode() পদ্ধতি -

প্রয়োগ করার জন্য একটি উদাহরণ দেখা যাক
using System;
public class Demo {
   public static void Main(){
      string URI1 = "https://www.tutorialspoint.com/index.htm";
      Console.WriteLine("URI = "+URI1);
      string URI2 = "https://www.tutorialspoint.com/";
      Console.WriteLine("URI = "+URI2);
      Console.WriteLine("Escaped string (URI1) = "+Uri.EscapeDataString(URI1));
      Console.WriteLine("Escaped string (URI2) = "+Uri.EscapeDataString(URI2));
      Console.WriteLine("GetHashCode() for URI1 = "+URI1.GetHashCode());
      Console.WriteLine("GetHashCode() for URI2 = "+URI2.GetHashCode());
   }
}

আউটপুট

এটি নিম্নলিখিত আউটপুট −

তৈরি করবে
URI = https://www.tutorialspoint.com/index.htm
URI = https://www.tutorialspoint.com/
Escaped string (URI1) = https%3A%2F%2Fwww.tutorialspoint.com%2Findex.htm
Escaped string (URI2) = https%3A%2F%2Fwww.tutorialspoint.com%2F
GetHashCode() for URI1 = -799747664
GetHashCode() for URI2 = 211597894

উদাহরণ

এখন Uri.GetHashCode() পদ্ধতি -

বাস্তবায়নের জন্য আরেকটি উদাহরণ দেখা যাক
using System;
public class Demo {
   public static void Main(){
      string URI1 = "https://www.qries.com/index.htm";
      Console.WriteLine("URI = "+URI1);
      string URI2 = "https://www.qries.com/";
      Console.WriteLine("URI = "+URI2);
      Console.WriteLine("Escaped string (URI1) = "+Uri.EscapeDataString(URI1));
      Console.WriteLine("Escaped string (URI2) = "+Uri.EscapeDataString(URI2));
      Console.WriteLine("GetHashCode() for URI1 = "+URI1.GetHashCode());
      Console.WriteLine("GetHashCode() for URI2 = "+URI2.GetHashCode());
   }
}

আউটপুট

এটি নিম্নলিখিত আউটপুট −

তৈরি করবে
URI = https://www.qries.com/index.htm
URI = https://www.qries.com/
Escaped string (URI1) = https%3A%2F%2Fwww.qries.com%2Findex.htm
Escaped string (URI2) = https%3A%2F%2Fwww.qries.com%2F
GetHashCode() for URI1 = -39330946
GetHashCode() for URI2 = -262746624

  1. C# এ Uri.ToString() পদ্ধতি

  2. C# এ Uri.MakeRelativeUri(Uri) পদ্ধতি

  3. C# এ Type.GetHashCode() পদ্ধতি

  4. C# এ CharEnumerator.GetHashCode() পদ্ধতি