<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1520</ErrorName>
  <Examples>
    <string>// CS1520: Class, struct, or interface method must have a return type
// Line: 8

class test {

	// To fix add a return type
	
	public static Main (string[] args)
	{
	}
}
</string>
  </Examples>
</ErrorDocumentation>