<?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>CS1024</ErrorName>
  <Examples>
    <string>// CS1024: Wrong preprocessor directive
// Line: 7

class C
{
	#region
	#end\x0072egion
}
</string>
    <string>// CS1024: Wrong preprocessor directive
// Line: 12

using System;

class C
{
	static void Main ()
	{
#if AA
		Console.WriteLine ("DEBUG mode");
# something not valid here
		Console.WriteLine ("NON-DEBUG mode");
#endif
	}
}
</string>
    <string>// cs1024.cs: Wrong preprocessor directive
// Line: 4

#wrong_directive
</string>
  </Examples>
</ErrorDocumentation>