Kizspy | Question: 34
(Choose 1 answer)
class Program{
static void Main(string[] args){
Uri info = new Uri("
https://www.asp.net:80/info?id=P001#fragment");Console.WriteLine($"{info.PathAndQuery};{info.Query}; {info. Fragment}");Console.ReadKey();
}
}
Which one of the following is the output of the above code?
A. /info?id=P001;?id=P001;#fragment
B. asp.net/info?id=P001;?id=P001;#fragment
C./info;?id=P001;#fragment
D. asp.net/info?id=P001;P001;#fragment