C# tuples, construction-deconstruction performance
问题 I have been writing some code in the style of: a1 = b1; a2 = b2; a3 = b3; ... an = bn; Suddenly I realize that for me, and for the context that I am writing the current algorithm (...) is more aesthetically pleasing to write some of these assignments in the form of: (a1, a2, a3, ..., an) = (b1, b2, b3, ..., bn); Now, I would like to know about the impact that this way of writing code can have on the performance. I suppose that here the construction-deconstruction of tuples can be optimized