<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1024</ErrorName>
  <Examples>
    <string>// CS1024: Wrong preprocessor directive
// Line: 7

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

#wrong_directive
</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>
  </Examples>
</ErrorDocumentation>