영어로 읽기

다음을 통해 공유


컴파일러 오류 CS0678

'variable': 필드는 volatile이면서 readonly일 수 없습니다.

volatilereadonly 키워드는 함께 사용할 수 없습니다.

다음 샘플에서는 CS0678을 생성합니다.

// CS0678.cs  
using System;  
  
class TestClass  
{  
   private readonly volatile int i;   // CS0678  
   // try the following line instead  
   // private volatile int i;  
  
   public static void Main()  
   {  
   }  
}