﻿<?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>CS0028</ErrorName>
  <Examples>
    <string>// cs0028: 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>