The source code to demonstrate the use of Segments property of Uri class is given below. The given program is compiled and executed successfully.
using System;
class UriExample
{
//Entry point of Program
static public void Main()
{
Uri domainUri;
string[] segs;
domainUri = new Uri("http://www.nerdutella.com:8082/Article/CPrograms/");
segs = domainUri.Segments;
foreach (string seg in segs)
{
Console.WriteLine(seg);
}
}
}
Output:
/
Article/
CPrograms/
Press any key to continue . . .
Here we took the object of the Uri class and used the Segments property that returns an array of strings that contains segments. And here we get segments one by one using a for each loop.
Program:
The source code to demonstrate the use of Segments property of Uri class is given below. The given program is compiled and executed successfully.
Output:
Here we took the object of the Uri class and used the Segments property that returns an array of strings that contains segments. And here we get segments one by one using a for each loop.
need an explanation for this answer? contact us directly to get an explanation for this answer