Hello, I have a general question with respect to loading assemblies at
runtime. Specifically, I would like to know if it is possible to reference a
class at compile time and have it resolve at link time? For instance, let's
say I have the following program:

using Foo;

class Test
{
        static void Main( string [ ] Unused )
        {
                Foo.Bar foobar = new Foo.Bar( );
                foobar.baz( );
        }
};

Now the external assembly 'Foo' isn't accessible at compile time, but I
would like to have my program compile into an 'incomplete' assembly, and
then later resolve the reference in another step, if that makes sense?


-- 
View this message in context: 
http://www.nabble.com/Deferred-loading-of-assemblies-in-C---tp24618972p24618972.html
Sent from the Mono - Dev mailing list archive at Nabble.com.

_______________________________________________
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list

Reply via email to