Derleyici Hatası CS1614
'name', 'name' ile 'nameAttribute' arasında belirsizdir; '@name' veya 'nameAttribute' kullanın.
Derleyici belirsiz bir öznitelik belirtimi ile karşılaştı.
Kolaylık olması için C# derleyicisi ExampleAttribute'u yalnızca [Example]
olarak belirtmenize olanak tanır. Ancak, derleyici özniteliğine mi yoksa ExampleAttribute özniteliğine Example
mi [Example]
başvurduğundan, exampleAttribute ile birlikte adlı Example
bir öznitelik sınıfı varsa belirsizlik oluşur. Netleştirmek için özniteliğini Example
ve [ExampleAttribute]
ÖrneğinAttribute'u kullanın[@Example]
.
Aşağıdaki örnek CS1614 oluşturur:
// 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() {
}
}
GitHub'da bizimle işbirliği yapın
Bu içeriğin kaynağı GitHub'da bulunabilir; burada ayrıca sorunları ve çekme isteklerini oluşturup gözden geçirebilirsiniz. Daha fazla bilgi için katkıda bulunan kılavuzumuzu inceleyin.