我很好奇是否有一个URI代表当前位置的概念。
我在C#中尝试了这段代码
[Test]
public void TestUri()
{
Uri a = new Uri(".", UriKind.Relative);
Console.WriteLine(a);
}
并抛出System.UriFormatException : Invalid URI: The format of the URI could not be determined.
所以我有两个问题:
(我知道我可以检查一下null的URI引用来实现这个......)