T
Tom
I load an assembly via
Assembly assembly=Assembly.LoadFile(assemblyName);
....
foreach(Type t in types)
{
attribs=t.GetCustomAttributes(typeof(MayaPanelAttribute),true);
}
When Get Custom Attributes is called I get a FileNotFound Exception
for one of the Assembly that this references. What am I doing wrong?
Any Help appreciated
Tom
Assembly assembly=Assembly.LoadFile(assemblyName);
....
foreach(Type t in types)
{
attribs=t.GetCustomAttributes(typeof(MayaPanelAttribute),true);
}
When Get Custom Attributes is called I get a FileNotFound Exception
for one of the Assembly that this references. What am I doing wrong?
Any Help appreciated
Tom