Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法可以在运行时导入 DLL?例如,像这样:
Dim lib = ImportDLL("library.dll") Dim result = lib.someNamespace.someClass.someFunction(arg1, arg2)
您可能指的是反射。网上有一堆文章,比如微软的。这个代码项目也是一个很好的演练。