<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS3008</ErrorName>
  <Examples>
    <string>// CS3008: Identifier `CLSClass._value' is not CLS-compliant
// Line: 9
// Compiler options: -warnaserror -warn:1

using System;
[assembly: CLSCompliant(true)]

public class CLSClass {
        public const string _value = "";
}
</string>
    <string>// CS3008: Identifier `CLSClass._myEvent' is not CLS-compliant
// Line: 11
// Compiler options: -warnaserror -warn:1

using System;
[assembly: CLSCompliant(true)]

public delegate void MyDelegate();

public class CLSClass {
        public event MyDelegate _myEvent;
}
</string>
    <string>// CS3008: Identifier `_A' is not CLS-compliant
// Line: 8
// Compiler options: -warnaserror -warn:1

using System;
[assembly:CLSCompliant(true)]

public class _A {
}
</string>
    <string>// CS3008: Identifier `_I' is not CLS-compliant
// Line: 8
// Compiler options: -warnaserror -warn:1

using System;
[assembly:CLSCompliant(true)]

public interface _I {
}
</string>
    <string>// CS3008: Identifier `I._()' is not CLS-compliant
// Line: 9
// Compiler options: -warnaserror -warn:1

using System;
[assembly:CLSCompliant(true)]

public interface I {
        void _();
}
</string>
    <string>// CS3008: Identifier `C._()' is not CLS-compliant
// Line: 9
// Compiler options: -warnaserror -warn:1

using System;
[assembly:CLSCompliant(true)]

public class C {
        public void _() {}
}
</string>
    <string>// CS3008: Identifier `System.Error.__ComObject' is not CLS-compliant
// Line: 9
// Compiler options: -warnaserror -warn:1

using System;
[assembly:CLSCompliant(true)]

namespace System.Error {
	public class __ComObject : MarshalByRefObject {
		private __ComObject ()
		{
		}
	}
}
</string>
    <string>// CS3008: Identifier `E2.__VALUE' is not CLS-compliant
// Line: 9
// Compiler options: -warnaserror -warn:1

using System;
[assembly:CLSCompliant (true)]

public enum E2 {
        __VALUE
}
</string>
    <string>// CS3008: Identifier `__N' is not CLS-compliant
// Line: 7
// Compiler options: -warnaserror -warn:1

[assembly:System.CLSCompliant(true)]

namespace __N
{
}
</string>
    <string>// CS3008: Identifier `CLSClass._value' is not CLS-compliant
// Line: 9
// Compiler options: -warnaserror -warn:1

using System;
[assembly: CLSCompliant(true)]

public class CLSClass {
        public static int _value = 3;
}
</string>
  </Examples>
</ErrorDocumentation>