使用下面的代码,我尝试使用 octokit.net 连接到 jquery 存储库,但代码似乎永远不会到达 print 语句。这种情况有什么原因吗,我知道 await 关键字导致了延迟,但核心问题是为什么我无法连接到存储库。谢谢
       static async void test()
    {
        var client = new GitHubClient(new ProductHeaderValue("OctokitTestsJordan"));
        var repository = await client.Repository.Get("jquery", "jquery");
        Console.WriteLine("aa");
    }