AsyncGenerator icon indicating copy to clipboard operation
AsyncGenerator copied to clipboard

Add support for out parameters

Open hazzik opened this issue 3 years ago • 0 comments

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, ...)
}

hazzik avatar Sep 14 '22 21:09 hazzik