We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
package.RequestPackageVersionAsync().Task; 这里能不能await后 可以返回 版本号,和用协程一个效果,现在返回的是null 就无法用异步方式了
The text was updated successfully, but these errors were encountered:
Sorry, something went wrong.
简单写法就是: var requestVersionOp = package.RequestPackageVersionAsync(): await requestVersionOp.Task; string version = requestVersionOp.PackageVersion;
No branches or pull requests
package.RequestPackageVersionAsync().Task; 这里能不能await后 可以返回 版本号,和用协程一个效果,现在返回的是null 就无法用异步方式了
The text was updated successfully, but these errors were encountered: