Apparently the implementation of Assembly.Load() in Silverlight needs a full/strong name.
E.g. this works:
Assembly.Load("MyAssembly, Version=1.0.0.0, Culture=neutral, PublicKeyToken=...");
while this will fail even if MyAssembly is already loaded:
Assembly.Load("MyAssembly");
Is there a workaround so that it's possible to use the simple name?