OD
(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();
A. https:www.asp.net;id=123
B. https:www.asp.net;80
Which one of the following is the output of the above code?
C. http:asp.net:80
D. https:#fragment; 80
}
}
Exit 17