使用英语阅读

通过


编译器警告(等级 3)CS0665

条件表达式中的赋值总是常量;是否希望使用 "==" 而非 "="?

条件表达式使用 = 运算符 而不是 == 运算符

下面的示例生成CS0665:

// CS0665.cs  
// compile with: /W:3  
class Test  
{  
   public static void Main()  
   {  
      bool i = false;  
  
      if (i = true)   // CS0665  
      // try the following line instead  
      // if (i == true)  
      {  
      }  
  
      System.Console.WriteLine(i);  
   }  
}