We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
In GenerateTableRow we have several similar repetitive cycles which we could replace one:
for (int row = 0; row < rows.Length; row++) ... for (int col = 0; col < scArray.Length; col++)
Also we could use Span and other means to reduce allocations.
In GenerateTableRow
we have several similar repetitive cycles which we could replace one:
Also we could use Span and other means to reduce allocations.