Re: [Ikvm-developers] Dynamic loading woes (again)
Brought to you by:
jfrijters
|
From: Jeroen F. <je...@su...> - 2007-02-09 09:09:07
|
Michael Kay wrote:
> > 3) Use Class.forName() with an assembly qualified name.
>
> This sounds the easiest approach, but what exactly is an
> "assembly qualified name"?
It's the type name including the assembly name. The easiest way to get it i=
s by writing a small C# app:
using System;
class Test
{
static void Main()
{
Console.WriteLine(typeof(com.saxonica.validate.SchemaAwareConfiguration=
).AssemblyQualifiedName));
}
}
Regards,
Jeroen
|