AsyncGenerator
AsyncGenerator copied to clipboard
Add support for out parameters
I think it could be possible to add support of out parameters via tuple returns
public bool TryDoSomething(string x, out X value)
{
}
=>
public (bool, X) TryDoSomethingAsync(string x)
{
return (true, ...)
}