<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS3019</ErrorName>
  <Examples>
    <string>// cs3019-2.cs: CLS compliance checking will not be performed on `CLSClass' because it is not visible from outside this assembly
// Line: 8
// Compiler options: -warnaserror -warn:2

using System;
[assembly:CLSCompliant (true)]

[CLSCompliant (false)]
class CLSClass {
}</string>
    <string>// CS3019: CLS compliance checking will not be performed on `CLSClass.Foo()' because it is not visible from outside this assembly
// Line: 8
// Compiler options: -warnaserror -warn:2

using System;
[assembly:CLSCompliant (true)]

public partial class CLSClass
{
	[CLSCompliant (false)]
	partial void Foo ();
	
	partial void Foo ()
	{
	}
}
</string>
    <string>// cs3019.cs: CLS compliance checking will not be performed on `CLSClass' because it is not visible from outside this assembly
// Line: 8
// Compiler options: -warnaserror -warn:2

using System;
[assembly:CLSCompliant (true)]

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