Trying to figure out how to work reflection with the tv assembly. I am having trouble accessing the MTV3D65.dll. I know the code works with mscorelib.dll.
Is there some special trick I am totally missing?
This is a quick test for accessing the dll. It works when I load mscorelib.dll but not MTV3D65.dll
private void TestTVReflect()
{
Assembly a = Assembly.Load("mscorelib.dll);
Type[] Types = a.GetTypes();
foreach (Type t in Types)
{
Console.WriteLine("Type is " + t);
}
}