Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 326 Bytes

MA0152.md

File metadata and controls

10 lines (7 loc) · 326 Bytes

MA0152 - Use Unwrap instead of using await twice

Prefer using Unwrap instead of using await twice

Task<Task> t;
await await t; // non-compliant

await t.Unwrap(); // compliant