views:

493

answers:

1

How Load dll from gac using Assembly.Load from remote machine ?

A: 

It can not be done.

The GAC is per machine only, unlike COM where you could use CreateObject on a different machine if the types were registered in both places.

Perhaps you should look into WCF (Windows Communication Foundation) (This has replaced Remoting.)

Mitch Wheat