无效的URI:URI方案无效。 - 新URI("&quet;​ https://docs.microsoft.com/windows/msix/app-inplater/update-settings")
我有一个非常简单的2行控制台应用程序(.NET 6),并且在创建 uri
时,
// See https://aka.ms/new-console-template for more information
Console.WriteLine("Hello, World!");
var uri = new Uri("https://learn.microsoft.com/windows/msix/app-installer/update-settings");
我会得到以下异常。我必须在这里做一些非常愚蠢的事情,但不能弄清楚。我也尝试了简单的URL,结果相同。
System.UriFormatException
HResult=0x80131537
Message=Invalid URI: The URI scheme is not valid.
Source=System.Private.Uri
StackTrace:
at System.Uri.CreateThis(String uri, Boolean dontEscape, UriKind uriKind, UriCreationOptions& creationOptions)
at System.Uri..ctor(String uriString)
at Program.<Main>$(String[] args) in C:\Users\user\source\repos2\ConsoleApp1\ConsoleApp1\Program.cs:line 3
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您在字符串中有一个附加的符号(在此不在此处显示)。这是从您的问题中复制出来的:
You have an additional symbol in string (it is not displayed here on SO). This is after copying from your question:
Delete this symbol before
https
and it will work.