<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0264</ErrorName>
  <Examples>
    <string>// CS0264: Partial declarations of `A&lt;T,O&gt;' must have the same type parameter names in the same order
// Line: 8

partial class A&lt;T, bool&gt;
{
}

partial class A&lt;T, O&gt;
{
}
</string>
    <string>// CS0264: Partial declarations of `Partial&lt;U&gt;' must have the same type parameter names in the same order
// Line: 4

partial class Partial&lt;T&gt;
{
}

partial class Partial&lt;U&gt;
{
}
</string>
  </Examples>
</ErrorDocumentation>