Assemblies / Serialization
Hello..
I am trying to solve a problem, but I'm not really sure what to call what I am want do as I am fairly new to C# .net.
I
have a Windows Service which basically controls threading and nothing
else. This service calls another .dll (Base Class) which I have added
as a reference to the Windows Service. Now, this Base Class will call
other .dlls or assemblies on the fly (for example I am pulling the name
of the .dll out of a table in the database). I want to be able to
carry all the properties and values from the Base Class to the new .dll
called. I believe serialization is what I am looking for, but every
example I've found works just with one solution with mulitple classes,
not multiple solutions (.dll's).
Make sense?
thanks for your help.