本文介绍了如何在C#中隐藏界面的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 您好,我想知道如何制作界面的方法 无法从外面访问 示例: ---------------------------------------------- 内部接口ImyInterface { void MyPrivateMethod(); //我不能在这里定义任何辅助功能,好吧 ok! } 公共类A,ImyInterface //我不能实现我的界面 私人或内部辅助功能,好吧! { public void MafonctionTresPrivee()//为什么我不能使用私人或 这里有内部可访问性??? { ASSERT(false); } } 公共等级B { myObjectA = new A(); myObjectA.MyPrivateMethod(); //嘿,我们可以在这里找到我的方法 !!! } ------------ ----------------------------------- 谢谢你提前 解决方案 Hello, I would like to know how to make the methods of an interfaceinaccessible from outside Example:----------------------------------------------internal Interface ImyInterface{void MyPrivateMethod(); // I cant define any accessibility here, wellok !} public class A, ImyInterface // I cant implement my interface withPrivate or internal accessibility, well ok !{public void MafonctionTresPrivee() // Why I cant use private orinternal accessibility here ???{ASSERT(false);}} public class B{A myObjectA = new A();myObjectA.MyPrivateMethod (); // Heyyy, we can reach my method here!!!}----------------------------------------------- Thank you in advance 解决方案 这篇关于如何在C#中隐藏界面的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
10-24 23:06