CS1614-fordítási hiba
A "név" nem egyértelmű a "name" és a "nameAttribute" között; használja a "@name" vagy a "nameAttribute" nevet.
A fordító nem egyértelmű attribútumspecifikációt észlelt.
Az egyszerűség kedvéért a C# fordító lehetővé teszi az ExampleAttribute[Example]
egyszerű megadását. A kétértelműség azonban akkor merül fel, ha az ExampleAttribute attribútumosztály mellett létezik egy attribútumosztályExample
, mert a fordító nem tudja megállapítani[Example]
, hogy az Example
attribútumra vagy az ExampleAttribute attribútumra hivatkozik-e. A tisztázáshoz használja [@Example]
az Example
attribútumot és [ExampleAttribute]
az ExampleAttribute parancsot.
A következő minta a CS1614-et hozza létre:
// 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() {
}
}