Peringatan Kompilator (tingkat 1) CS3026

Bidang 'bidang' yang mematuhi CLS tidak boleh volatil

Variabel volatil tidak boleh patuh dengan CLS.

Contoh

Contoh berikut menghasilkan CS3026.

// CS3026.cs
[assembly:System.CLSCompliant(true)]
public class Test
{
    public volatile int v0 =0;   // CS3026
    // To resolve remove the CLS-Compliant attribute.
    public static void Main() { }
}