Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 250 Bytes

AsyncAction-1.md

File metadata and controls

17 lines (13 loc) · 250 Bytes
Error in user YAML: Alias parsing is not enabled.
---
uid: Recore.AsyncAction`1
example:
- *content
---

Say you have a method with the signature

Task DoThing(int x, string s, Func<int, Task> thing)

You can refactor this to

Task DoThing(int x, string s, AsyncAction<int> thing)