Same name Assembly loading

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have two assemblies with exactly the same name, but
which are different; one is on the local machine and the
other comes from a remote one.
I want to deserialize an object which is of a type of the
remote assembly.
How can I do this since my deserializer says "Type is not
resolved for member ..."
I think the remote assembly is loaded though (I did it
with an AssemblyResolveHandler that catch any
AssemblyResolve event and returns the remote assembly)

Thanks for the help

Valéry Bezençon
 
How about the "full name?" If two assemblies share the same "full name",
you probably need to rethink your design.

-vJ

I have two assemblies with exactly the same name, but
which are different; one is on the local machine and the
other comes from a remote one.
I want to deserialize an object which is of a type of the
remote assembly.
How can I do this since my deserializer says "Type is not
resolved for member ..."
I think the remote assembly is loaded though (I did it
with an AssemblyResolveHandler that catch any
AssemblyResolve event and returns the remote assembly)

Thanks for the help

Valéry Bezençon
 
Back
Top