User475983607 posted
Alex9
Hello all!
Does the
private static IConfiguration Config;
guarantee thread safe access via several controllers instances? Do I need to use lock?
Thank you.
Not enough information provided. Generally configuration is read only. If there are no updates then there's no chance of dirty data. It does beg the question, why did you decide on this programming pattern when the standard
pattern found in every beginning level tutorial is a private readonly? What are you trying to do?