I have application where I'm using a tabPage controls. In each of this controls I read data from the excel file and then analyze the data in separate threads. How make to a few threads can read data from one excel file?
how to use one file in a few threads
118 views Asked by Karol At
4
read data into memory and synchronize access from different threads by
mutex
(probablyCriticalSection
in your case)