Update a DataSet using multiple threads? C#

  • Thread starter Thread starter Scott Tenorman
  • Start date Start date
S

Scott Tenorman

Can I access/update a single dataset in a multi-threaded envirnment
using C#?

I'm assuming this is possible, but don't know how to go about it.
This scenario is hypothetical so I can't give any specific code
examples. I believe there is an article about in using VB.NET, but I
haven't seen it in a while.

If anyone has any insights into this I would appreciate it!
 
Hi Scott,

From the help:
Thread Safety
This type is safe for multithreaded read operations. You must synchronize
any write operations.

HTH,
 
Back
Top