﻿<?xml version="1.0" encoding="utf-8"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS8202</ErrorName>
  <Examples>
    <string>//
// The type parameters introduce the names into the class namespace, so it is
// not possible to have members with the same name as a parameter
//

// First error.
class X &lt;T&gt; {
	int T;
}

// Second error: type parameter is the same name as the class

class Y &lt;Y&gt; {
}

class W {
	static void Main () {}
}
</string>
  </Examples>
</ErrorDocumentation>