up vote 6 down vote favorite
1
share [g+] share [fb]

I am trying to add Silverlight support to my favorite programming langauge Nemerle.

Nemerle , on compilation procedure, loads all types via reflection mainly in 2 steps

1-) Uses Assembly.LoadFrom to load assembly 2-) Usese Assembly.GetTypes() to get the types

Then at the end of compilation it emits the resolved types with Reflection.Emit.

This procedure works for all assemblies including Silverlight ones except mscorlib of silverlight.

In c# this fails:

 var a = System.Reflection.Assembly.LoadFrom(@"c:\mscorlib.dll");

but this passes :

var a = System.Reflection.Assembly.ReflectionOnlyLoadFrom(@"c:\mscorlib.dll");

Bu in the latter , a.GetTypes() throws an exception sayin System.Object's parent does not exist.

Is there a way out ?

link|improve this question
Are you doing this from Silverlight itself or the standard CLR? – Joe Albahari Apr 21 '09 at 9:43
feedback

2 Answers

up vote 5 down vote accepted

Assuming you're trying to reflect over Silverlight's mscorlib from the standard CLR, this won't work because the CLR doesn't permit loading multiple versions of mscorlib. (Perhaps this is because it could upset resolution of its core types).

A workaround is to use Mono.Cecil to inspect the types: http://mono-project.com/Cecil. This library actually performs better than .NET's Reflection and is supposed to be more powerful.

Here's some code to get you started:

AssemblyDefinition asm = AssemblyFactory.GetAssembly(@"C:\mscorlib.dll");

var types =
    from ModuleDefinition m in asm.Modules
    from TypeDefinition t in m.Types
    select t.Name;
link|improve this answer
feedback

You can compile Nemerle with Silverlight assembly and then you have Nemerle working on top of Silverlight :)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.