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