I am trying to run several functions that connect to a remote site (over the network) and return a general list. But I want to run them at the same time.
For example:
public static List<SearchResult> Search(string title) {
As I can see, several simultaneous entries in the "results" can happen ... Which can lead to the failure of my application.
How can i avoid this?
list c # parallel-processing locking
shaharmor Nov 03 2018-11-11T00: 00Z
source share