Edit

Share via


Compiler Warning (level 1) CS3026

CLS-compliant field 'field' cannot be volatile

A volatile variable should not be CLS compliant.

Example

The following example generates CS3026.

C#
// 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() { }
}