- call to WCF from multiple threads returns properties with null value sometimes
- myList.AsParallel().WithDegreeOfParallelism(1).ForAll(x => Worker(x));
- public void Worker(object cui)
- {
- MyData mf = null;
- mf = (new AnalyseService.AnalyseServiceClient()).GetDataFromWCFService((string)cui, true);
- }