Uri.ToString() Method in C#


The Uri.ToString() method in C# is used to get a canonical string representation for the specified Uri instance.

Syntax

Following is the syntax −

public override string ToString ();

Example

Let us now see an example to implement the Uri.ToString() method −

using System;
public class Demo {
   public static void Main(){
      Uri newURI1 = new Uri("https://www.tutorialspoint.com/");
      Console.WriteLine("URI = "+newURI1);
      Console.WriteLine("String representation = "+newURI1.ToString());
      Uri newURI2 = new Uri("https://www.tutorialspoint.com/jquery.htm#abcd");
      Console.WriteLine("
URI = "+newURI2);       Console.WriteLine("String representation = "+newURI2.ToString());       if(newURI1.Equals(newURI2))          Console.WriteLine("
Both the URIs are equal!");       else          Console.WriteLine("
Both the URIs aren't equal!");       Uri res = newURI1.MakeRelativeUri(newURI2);       Console.WriteLine("Relative uri = "+res);    } }

Output

This will produce the following output −

URI = https://www.tutorialspoint.com/
String representation = https://www.tutorialspoint.com/
URI = https://www.tutorialspoint.com/jquery.htm#abcd
String representation = https://www.tutorialspoint.com/jquery.htm#abcd
Both the URIs aren't equal!
Relative uri = jquery.htm#abcd

Updated on: 07-Nov-2019

109 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements