引用程序集时隐藏程序集中的方法

发布于 2024-10-14 03:21:52 字数 118 浏览 1 评论 0原文

我有一个程序集,其中有一个方法定义。 虽然我想访问汇编的所有其他方法,但我暂时不想访问我的文件中的这个特定方法。假设我已经获得了一个dll,我是这个dll的消费者。我想限制对其文件中其中一种方法的访问。 如何实现这一目标?

I have an assembly in which i have a method definition.
While i want to access all other methods of the assemble, i do not want to have access to this particular method in my file for the time being. Say i have been provided with a dll, i am a consumer of this dll. I want to restrict access to one of its methods in my file.
how to attain this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

腹黑女流氓 2024-10-21 03:21:52

如果我理解正确,根据您的汇编器,您可以对不同模块中的过程使用 EXTERNPUBLIC

If I understand corectly, depending on your assembler, you can use EXTERN and PUBLIC for procedures in different modules.

你的心境我的脸 2024-10-21 03:21:52

您可以删除包含文件 (.inc) 中对该函数的引用,这样链接器就不会知道它的存在。

确实没有充分的理由这样做。如果你不想使用某个函数,就不要调用该函数。不管怎样,它都会被加载到内存中。

You can delete the reference to that function your include file (.inc) so the linker doesn't know it's there.

There's not really a good reason to do this. If you don't want to use a function, just don't call the function. It will be loaded into memory regardless.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文