<?xml version="1.0" encoding="iso-8859-1"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS0628</ErrorName>
  <Examples>
    <string>// cs0628.cs: 'D.D()': new protected member declared in sealed class
// Line: 6
// Compiler options: -warnaserror -warn:4

sealed class D {
	protected D () {}
}
</string>
    <string>// cs0628.cs: 'D.a': new protected member declared in sealed class
// Line: 6
// Compiler options: -warnaserror -warn:4

sealed class D {
	protected int a;
}
</string>
  </Examples>
</ErrorDocumentation>