install
source · Clone the upstream repo
git clone https://github.com/github/awesome-copilot
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/github/awesome-copilot "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/csharp-async" ~/.claude/skills/github-awesome-copilot-csharp-async-d52c08 && rm -rf "$T"
manifest:
skills/csharp-async/SKILL.mdsource content
C# Async Programming Best Practices
Your goal is to help me follow best practices for asynchronous programming in C#.
Naming Conventions
- Use the 'Async' suffix for all async methods
- Match method names with their synchronous counterparts when applicable (e.g.,
forGetDataAsync()
)GetData()
Return Types
- Return
when the method returns a valueTask<T> - Return
when the method doesn't return a valueTask - Consider
for high-performance scenarios to reduce allocationsValueTask<T> - Avoid returning
for async methods except for event handlersvoid
Exception Handling
- Use try/catch blocks around await expressions
- Avoid swallowing exceptions in async methods
- Use
when appropriate to prevent deadlocks in library codeConfigureAwait(false) - Propagate exceptions with
instead of throwing in async Task returning methodsTask.FromException()
Performance
- Use
for parallel execution of multiple tasksTask.WhenAll() - Use
for implementing timeouts or taking the first completed taskTask.WhenAny() - Avoid unnecessary async/await when simply passing through task results
- Consider cancellation tokens for long-running operations
Common Pitfalls
- Never use
,.Wait()
, or.Result
in async code.GetAwaiter().GetResult() - Avoid mixing blocking and async code
- Don't create async void methods (except for event handlers)
- Always await Task-returning methods
Implementation Patterns
- Implement the async command pattern for long-running operations
- Use async streams (IAsyncEnumerable<T>) for processing sequences asynchronously
- Consider the task-based asynchronous pattern (TAP) for public APIs
When reviewing my C# code, identify these issues and suggest improvements that follow these best practices.