Computer >> कंप्यूटर >  >> प्रोग्रामिंग >> 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.MakeRelativeUri (उरी) विधि

    C# में Uri.MakeRelativeUri(Uri) विधि का उपयोग दो उरी उदाहरणों के बीच अंतर को निर्धारित करने के लिए किया जाता है। सिंटैक्स निम्नलिखित वाक्य रचना है - public Uri MakeRelativeUri (Uri uri); ऊपर, यूआरआई वर्तमान यूआरआई की तुलना करने के लिए यूआरआई है। उदाहरण आइए अब Uri.MakeRelativeUri(Uri) पद्धति को ला

  1. Type.GetHashCode () सी # में विधि

    इस उदाहरण के लिए हैश कोड वापस करने के लिए C# में Type.GetHashCode() विधि का उपयोग किया जाता है। सिंटैक्स निम्नलिखित वाक्य रचना है - public override int GetHashCode (); उदाहरण आइए अब Type.GetHashCode() पद्धति को लागू करने के लिए एक उदाहरण देखें - using System; public class Demo {    publi

  1. C# में CharEnumerator.GetHashCode () विधि

    C# में CharEnumerator.GetHashCode() विधि वर्तमान ऑब्जेक्ट के लिए हैश कोड देता है। सिंटैक्स public virtual int GetHashCode (); आइए अब हम CharEnumerator.GetHashCode() पद्धति को लागू करने के लिए एक उदाहरण देखें - उदाहरण using System; public class Demo {    public static void Main(){   &