我更新了 Visual Studio,现在收到很多这样的消息:
public ICommand OpenWebPageCmd => new Command<string>(async (url) =>
{
await Browser.OpenAsync(new Uri(url), BrowserLaunchMode.SystemPreferred);
});
异步方法“匿名”不应返回 void
我看到了一些不特定于此扩展的其他答案。使用浏览器选项打开新页面时,有什么办法可以解决这个问题?