<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0663</ErrorName>
  <Examples>
    <string>// CS0663: An overloaded method `Test.Test(out int)' cannot differ on use of parameter modifiers only
// Line: 10

public class Test
{
	public Test (ref int i)
	{
	}
	
	public Test (out int i)
	{
	}
}
</string>
    <string>// CS0663: An overloaded method `WrongInterface.Test(ref int)' cannot differ on use of parameter modifiers only
// Line: 6

public interface WrongInterface {
        int Test(out int obj);
        int Test(ref int obj);
}
</string>
  </Examples>
</ErrorDocumentation>