<?xml version="1.0" encoding="iso-8859-1"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS3019</ErrorName>
  <Examples>
    <string>// cs3019.cs: CLS compliance checking will not be performed on 'CLSClass' because it is private or internal
// Line: 8
// Compiler options: -warnaserror -warn:2

using System;
[assembly:CLSCompliant (true)]

[CLSCompliant (false)]
class CLSClass {
}</string>
    <string>// cs3019.cs: CLS compliance checking will not be performed on 'CLSClass' because it is private or internal
// Line: 8
// Compiler options: -warnaserror -warn:2

using System;
[assembly:CLSCompliant (true)]

[CLSCompliant (true)]
class CLSClass {
}</string>
  </Examples>
</ErrorDocumentation>