relatively_random
relatively_random

Reputation: 5126

Is it possible to deconstruct out ValueTuple parameters?

Is it possible to deconstruct a tuple which isn't returned from a method, but is an out parameter? I'm not sure I'm expressing myself correctly or even using the right terms, so here's some examples:

void OutMethod(out (int aNumber, string someText) output)
    => output = (15, "yo");

void Usage()
{
    {
        // Works, of course.
        OutMethod(out var tuple);

        // But *slightly* aesthetically unappealing to use.
        var usage = $"{tuple.someText}: {tuple.aNumber}";
    }

    {
        // Would be awesome, but doesn't work.
        OutFunction(out var(number, text));
    }

    {
        // Would be awesome too, but doesn't work.
        OutFunction(out (var number, var text));
    }

    {
        // This doesn't work either.
        OutFunction((out var number, out var text));
    }

    {
        // Not even this.
        OutFunction((out int number, out string text));
    }

    {
        // Or this.
        OutMethod(out (int number, string text));
    }

    {
        // Or this.
        int number;
        string text;
        OutMethod(out (number, text));
    }
}

BTW, not complaining. Just wondering if I'm missing something.

Upvotes: 23

Views: 5370

Answers (2)

ketura
ketura

Reputation: 436

While the other answer is correct in that it can't be done in one line as part of the function call, you can of course manually deconstruct the out parameter as needed:

OutMethod(out var tuple);
(int aNumber, string someText) = tuple;
var usage = $"{someText}: {aNumber}";

This will at least address your usage concerns.

Upvotes: 10

David Arno
David Arno

Reputation: 43254

This currently isn't possible. Further, according to this comment on the CSharplang github repo:

This was something that we took up in the LDM [Language Design Meetings] when we were triaging and decided against doing, at least for the near future...

So it's likely to remain "isn't possible" for some time to come.

Upvotes: 21

Related Questions