<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS0028</ErrorName>
  <Examples>
    <string>// CS0028: `T.Main()' has the wrong signature to be an entry point
// Line: 6
// Compiler options: -warnaserror:28 -warn:4

class T {
        public static bool Main ()
        {
            return false;
        }
}

</string>
    <string>// cs0028.cs: `T.Main(int)' has the wrong signature to be an entry point
// Line: 8
// Compiler options: -warnaserror -warn:4

class T {
        public static int Main ()
        {
        }
        public static int Main (int foo)
        {
        }
}

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