.net - How to get the LoaderExceptions in Matlab -
i trying load assembly in matlab using:
net.addassembly(libpath);
i exception message:
message: unable load 1 or more of requested types. retrieve loaderexceptions property more information.
for exception identifier:
matlab:net:clrexception:addassembly
how can access/get loaderexceptions in matlab? possible? in c# can this.
the following code works me:
try net.addassembly(assembly) catch ex end ex.exceptionobject.loaderexceptions.get(0).message
Comments
Post a Comment