Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
CLS-compliant field 'field' cannot be volatile
A volatile variable should not be CLS compliant.
Example
The following example generates CS3026.
// CS3026.cs
[assembly:System.CLSCompliant(true)]
public class Test
{
public volatile int v0 =0; // CS3026
// To resolve remove the CLS-CComplient attribute.
public static void Main() { }
}