﻿<?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>CS1520</ErrorName>
  <Examples>
    <string>//
// cs1520: Class, struct or interface method must have a return type
// Line: 9

class test {

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