<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0051</ErrorName>
  <Examples>
    <string>// CS0051: Inconsistent accessibility: parameter type `C.S?[][]' is less accessible than method `C.Foo(C.S?[][])'
// Line: 7

public class C
{
	struct S {}
	public void Foo (S?[][] o) {}
}
</string>
    <string>// CS0051: Inconsistent accessibility: parameter type `NV' is less accessible than method `C1.Foo(NV)'
// Line: 14

internal class NV
{
}

public partial class C1
{
}

partial class C1
{
	public void Foo (NV arg)
	{
	}
}</string>
    <string>// CS0051: Inconsistent accessibility: parameter type `MyClass.X' is less accessible than method `MyClass.method(MyClass.X)'
// Line: 12

public class MyClass {

	//
	// To fix change the next line to "public enum X {
	enum X {
		a, b
	}

	public void method (X arg)
	{
	}
}
</string>
  </Examples>
</ErrorDocumentation>