J'apprends sur async / wait et j'ai rencontré une situation où je dois appeler une méthode async de manière synchrone. Comment puis je faire ça? Méthode asynchrone: public async Task<Customers> GetCustomers() { return await Service.GetCustomersAsync(); } Utilisation normale: public async void...