<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0119</ErrorName>
  <Examples>
    <string>// cs0119-2.cs: Expression denotes a `method group', where a `variable', `value' or `type' was expected
// Line: 9

public class App {

  public static void Main() {}

  SomeEnum SomeEnum() {
    return SomeEnum.First;
  }

}

enum SomeEnum { First, Second };
</string>
    <string>// CS0119: Expression denotes a `variable', where a `method group' was expected
// Line: 11

using System;

class X
{
	static void Main ()
	{
		Delegate d = null;
		Console.WriteLine (d (null, null));
	}
}
</string>
    <string>// cs0119.cs: Expression denotes a `method group', where a `variable', `value' or `type' was expected
// Line: 14

using System;

public class Test
{
    public static void E () 
    { 
    }

    public static void Main () 
    {
        Console.WriteLine(E.x);
    }
}
</string>
  </Examples>
</ErrorDocumentation>