可能重复:
构造函数可以是异步的
我有一个类示例,它从互联网上提取了一些关于创建的信息。
public class Example
{
string information;
public Example()
{
//Pull information
}
}
现在我想让 Example 成为可等待的,因为在创建后继续该部分之前创建 Example 很重要。
public async void SetupSomething()
{
Example ex = new Example();
await ex;
// Do something with ex
}
我怎样才能做到这一点?