İngilizce dilinde oku

Aracılığıyla paylaş


Derleyici Hatası CS0104

'reference', 'identifier' ile 'identifier' arasında belirsiz bir başvurudur

Programınız iki ad alanı için using yönergelerini içerir ve kodunuz her iki ad alanında da görünen bir ada başvurur.

Aşağıdaki örnek CS0104 oluşturur:

// 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();  
   }  
}