使用英语阅读

通过


编译器警告(等级 2)CS0436

“assembly”中的类型“type”与“assembly”中导入的类型“type2”冲突。 请使用“assembly”中定义的类型。

源文件 (file_2) 中的类型与 file_1 中某一导入的类型冲突时会发出此警告。 编译器使用源文件中的命名空间。

示例 1

C#
// CS0436_a.cs  
// compile with: /target:library  
public class A {  
   public void Test() {  
      System.Console.WriteLine("CS0436_a");  
   }  
}  

示例 2

以下示例生成 CS0436。

C#
// 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