Reputation: 99
Here I have 'ConsoleApplication01", "ConsoleApplkication02" and I am using COM reference of "Test.dll" in both Applications. Now I am keeping both Exe's in same location to use functionally. So will it affect its operation due to this.
Upvotes: 0
Views: 68
Reputation: 912
if the dll is the same it will not effect functionality . we are using User.dll Kernel.dll almost in all applications .
leave this to OS
Upvotes: 1
Reputation: 1737
Generally, two applications can run together using the same assembly, keep in mind that it also depends on your referenced assembly functionality, for example, if the referenced assembly creates a file with a constant name in working directory and writes to it, the operation will fail if you will try to use this functionality from two applications in the same time.
Upvotes: 0