I have a .NET module that I need to call from an instantiated class. Can I count on only one object at a time being able to access the functions in a module (something like instantiating a module) or will I need to look at locking within the class? I can’t seem to get a clear answer to this anywhere. Thanks!
Share
It depends entirely on the implementation of the classes in the module. As a general rule, though, if they’re not advertised as thread-safe, they’re probably not.