本文介绍了如何使用名称空间保持访问级别的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我们怎样才能使类的成员只能在名称空间内访问.
请看下面的场景

How can we make a member of class accessible inside the namespace ONLY.
please look the following scenerio

namespace abc
{
 class a
 {
   internal int xyz;
 }
}
namespace def
{
 class d
 {
   public d()
   {
    a obj= new a();
    var x= obj.xyz;/// I want to restrict the programmer of namespace def not to  access xyz where as I want to keep xyz public inside the namespace abc

   }
 }
}


谢谢您的帮助.


Thank you for assistance.

推荐答案



这篇关于如何使用名称空间保持访问级别的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-31 10:27