﻿<?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>CS0506</ErrorName>
  <Examples>
    <string>// cs0506.cs: 'DerivedClass.Show()' : cannot override inherited member 'BaseClass.Show()' because it is not marked "virtual", "abstract", or "override"
// Line: 9

class BaseClass {
        protected void Show () {}
}

class DerivedClass: BaseClass {
        protected override void Show () {}
}

</string>
  </Examples>
</ErrorDocumentation>