Is DataRow thread safe? How to update a single datarow in a datatable using multiple threads? - .net
- by NLV
Hello all
I want to update a single datarow in a datatable using multiple threads. Is this actually possible?
I've written the following code implementing a simple multi-threading to update a single datarow. I get different results each time. Why is it so?
public partial class Form1 : Form
{
private static DataTable dtMain;
private…