Replies: 1 comment 4 replies
-
Not a bug, moving this to discussions. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is there a reason for replacing items in List<> instances in method TableRowCollection.Update by removing old item and then inserting new one at the same index? This makes List<> do unnecessary copying which could be avoided by simply replacing the old item with new one (i.e. list[index] = newItem).
Beta Was this translation helpful? Give feedback.
All reactions