Skip to content

Add support for out parameters #166

@hazzik

Description

@hazzik

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

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions