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 文件,现在我希望能够在不将其添加到“参考”的情况下使用它,例如“系统”dll,您可以在其中键入“系统。(...)”
我应该把dll文件放在哪里?还是做不到?
您需要添加该文件作为参考。然后你可以使用完整的命名空间来调用它,或者你可以添加一个 using 语句。另一种方法是将您的库代码编译到您的新项目中,这样您就不需要 DLL。