編譯器警告 (層級 2) CS0436
'assembly' 中的類型 'type' 與 'assembly' 中匯入的類型 'type2' 相衝突。 請使用 'assembly' 中定義的類型。
原始程式檔 (file_2) 中的類型與 file_1 中匯入的類型衝突時,會發出這個警告。 編譯器會使用原始程式檔中的類型。
// CS0436_a.cs
// compile with: /target:library
public class A {
public void Test() {
System.Console.WriteLine("CS0436_a");
}
}
下列範例會產生 CS0436。
// CS0436_b.cs
// compile with: /reference:CS0436_a.dll
// CS0436 expected
public class A {
public void Test() {
System.Console.WriteLine("CS0436_b");
}
}
public class Test
{
public static void Main()
{
A x = new A();
x.Test();
}
}
編譯會產生下列輸出:
CS0436_b