C# Developers' Journal (original) (raw)
2:06p
I need to figure out how to share a DLL across a network. Here's the skinny.
I would like to be able for a DLL to sit on a server and allow clients to access methods in that DLL. I'd really like to keep it to one copy of the DLL, so I don't have to update everybody when I change something. I can reference the DLL in Studio and compile, but when I go to run the client app, I get a FileNotFoundException. None of this is going to be done over the Internet, it's all going to be LAN stuff. Any help would be greatly appreciated.
DC