现在我有3种方法
IList<Car> cars = Service.GetCars(20);
IList<Shoe> shoes = Service.GetShoes(20);
IList<Bike> bike = Service.GetBikes(20);
我想用异步关键字并行调用并等待。我真的不明白该怎么做。下面是一个 GetMethod 的摘要......你把 async 关键字放在哪里?我在哪里创建任务?我想做和异步 js lib 一样简单。https://github.com/caolan/async/
public IList<Car> GetCars(int num){
return repository.GetCars(num);
}