Is it possible to deconstruct a tuple that does not return from the method but is an out parameter? I'm not sure that I am expressing or even using the correct terms correctly, so here are a few examples:
void OutMethod(out (int aNumber, string someText) output) => output = (15, "yo"); void Usage() { {
By the way, Iām not complaining. Just wondering if I'm missing something.
source share