Compilerfehler CS0678
Aktualisiert: November 2007
Fehlermeldung
Variable "variable": Ein Feld kann nicht flüchtig und gleichzeitig schreibgeschützt sein.
'variable': a field can not be both volatile and readonly
Die Verwendung des volatile-Schlüsselworts und des readonly-Schlüsselworts schließen sich gegenseitig aus.
Im folgenden Beispiel wird CS0678 generiert:
// 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()
{
}
}