﻿<?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>CS0659</ErrorName>
  <Examples>
    <string>// cs0659.cs: 'E' overrides Object.Equals(object) but does not override Object.GetHashCode()
// Line: 13
// Compiler options: -warnaserror -warn:3

public class Base
{
    public override int GetHashCode ()
    {
        return 2;
    }
}

public class E: Base
{
    public override bool Equals (object o)
    {
        return true;
    }
}
</string>
  </Examples>
</ErrorDocumentation>