編譯器錯誤 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() {
}
}