引用程序集时隐藏程序集中的方法
我有一个程序集,其中有一个方法定义。 虽然我想访问汇编的所有其他方法,但我暂时不想访问我的文件中的这个特定方法。假设我已经获得了一个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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果我理解正确,根据您的汇编器,您可以对不同模块中的过程使用
EXTERN
和PUBLIC
。If I understand corectly, depending on your assembler, you can use
EXTERN
andPUBLIC
for procedures in different modules.您可以删除包含文件 (.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.