영어로 읽기

다음을 통해 공유


컴파일러 오류 CS0104

'reference'는 'identifier'와 'identifier' 사이에 모호한 참조입니다.

프로그램에 두 네임스페이스에 대한 using 지시문이 있고 코드에서 두 네임스페이스에 나타난 이름을 참조합니다.

다음 샘플에서는 CS0104를 생성합니다.

// CS0104.cs  
using x;  
using y;  
  
namespace x  
{  
   public class Test  
   {  
   }  
}  
  
namespace y  
{  
   public class Test  
   {  
   }  
}  
  
public class a  
{  
   public static void Main()  
   {  
      Test test = new Test();   // CS0104, is Test in x or y namespace?  
      // try the following line instead  
      // y.Test test = new y.Test();  
   }  
}