<?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>CS0220</ErrorName>
  <Examples>
    <string>// cs0220.cs: The operation overflows at compile time in checked mode
// Line: 7

public class MainClass {
        static void Main () {
                const long a = long.MaxValue;
                long b = 2 * a;
        }
}


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