Бөлісу құралы:


Ошибка компилятора CS1614

"name" неоднозначно между "name" и "nameAttribute"; используйте "@name" или "nameAttribute".

Компилятор обнаружил неоднозначную спецификацию атрибута.

Для удобства компилятор C# позволяет указать ExampleAttribute так же, как [Example]. Тем не менее, если класс атрибута с именем Example существует одновременно с ExampleAttribute, возникает неоднозначность, поскольку компилятор не может определить, ссылается ли [Example] на атрибут Example или на атрибут ExampleAttribute. Чтобы устранить неоднозначность, используйте [@Example] для атрибута Example и [ExampleAttribute] для ExampleAttribute.

В следующем примере возникает ошибка CS1614:

// CS1614.cs  
using System;  
  
// Both of the following classes are valid attributes with valid  
// names (MySpecial and MySpecialAttribute). However, because the lookup  
// rules for attributes involves auto-appending the 'Attribute' suffix  
// to the identifier, these two attributes become ambiguous; that is,  
// if you specify MySpecial, the compiler can't tell if you want  
// MySpecial or MySpecialAttribute.  
  
public class MySpecial : Attribute {  
   public MySpecial() {}  
}  
  
public class MySpecialAttribute : Attribute {  
   public MySpecialAttribute() {}  
}  
  
class MakeAWarning {  
   [MySpecial()] // CS1614  
                 // Ambiguous: MySpecial or MySpecialAttribute?  
   public static void Main() {  
   }  
  
   [@MySpecial()] // This isn't ambiguous, it binds to the first attribute above.  
   public static void NoWarning() {  
   }  
  
   [MySpecialAttribute()] // This isn't ambiguous, it binds to the second attribute above.  
   public static void NoWarning2() {  
   }  
  
   [@MySpecialAttribute()] // This is also legal.  
   public static void NoWarning3() {  
   }  
}