更新:2007 年 11 月

错误消息

只有 assignment、call、increment、decrement 和 new 对象表达式可用作语句

编译器在遇到无意义的语句时会生成错误。

示例

下面的示例生成 CS0201。

 复制代码
// CS0201.cs
public class MainClass
{
   public static void Main()
   {
      2 * 3;   // CS0201
   }
}

下面的示例生成 CS0201。

 复制代码
// CS0201_b.cs
// compile with: /target:library
public class MyList<T> 
{
   public void Add(T x)
   {
      int i = 0;
      if ( (object)x == null)
      {
         checked(i++);   // CS0201

         // OK
         checked {
            i++; 
         }
      }
   }
}