<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS8081</ErrorName>
  <Examples>
    <string>// CS8081: Expression does not have a name
// Line: 8

class C
{
	void Foo ()
	{
		string s = nameof (this);
	}
}</string>
    <string>// CS8081: Expression does not have a name
// Line: 8

class C
{
	static void Main ()
	{
		string s = nameof (Main ());
	}
}</string>
  </Examples>
</ErrorDocumentation>