标签: vb.net dll
有没有办法在运行时导入DLL?例如,像这样:
Dim lib = ImportDLL("library.dll") Dim result = lib.someNamespace.someClass.someFunction(arg1, arg2)
答案 0 :(得分:2)
你可能指的是reflection。网络中有很多文章,如Microsoft中的文章。这个codeproject也是一个很好的演练。