使用相同的名称空间

使用相同的名称空间

本文介绍了是否可以使用相同的名称空间&裁判课?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述


使用相同的名称空间&在多文件中是可能的ref类,如以下列表所示:

Hi,
Is possible in muti-files using the same namespace & ref class, like below list:

// file A
namespace cvImglib{
     public ref class Imglib
        {
      void method1(.......)
       {
       ............
       }
      void method2(........)
       {
        .............
        }
    };
} 







and

//file B
namespace cvImglib{
     public ref class Imglib
        {
      int a,b,c;
       .......
      void method3(.......)
      {
          method1(a,b,c,....);
      }
      void method2(........)
      {
       ...........
      }
    };
} 



在这里,在文件B中,方法3找不到方法1,并且我收到错误c3861"消息.有人可以帮我吗?

非常感谢!!:)



here, in the file B, method 3 can''t find method 1,and i get the "error c3861" message. So someone could help me?

Thanks a lot!!:)

推荐答案


这篇关于是否可以使用相同的名称空间&裁判课?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-21 06:55