<?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>CS1552</ErrorName>
  <Examples>
    <string>// cs1552.cs: Array type specifier, [], must appear before parameter name
// Line: 6

class T {
	// To fix: change (string args[]) to (string [] args)
	public static int Main (string args[])
	{
            return 0;
	}
}
</string>
  </Examples>
</ErrorDocumentation>