<?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>CS0117</ErrorName>
  <Examples>
    <string>// cs0117-2.cs: `A' does not contain a definition for `Foo'
// Line: 15
using System;
using System.Runtime.CompilerServices;

class A
{
	[IndexerName ("Foo")]
	public int this [int index] {
		get { return index; }
	}

	static int Test (A a)
	{
		return a.Foo;
	}

	public static void Main ()
	{
		Test (new A ());
	}
}
</string>
    <string>// cs0117-3.cs: `A' does not contain a definition for `Foo'
// Line: 16
using System;
using System.Runtime.CompilerServices;

class A
{
	[IndexerName ("Foo")]
	public int this [int index] {
		get { return index; }
		set { ; }
	}

	static void Test (A a, int value)
	{
		a.Foo = value;
	}

	public static void Main ()
	{
		Test (new A (), 9);
	}
}
</string>
    <string>// cs0117: `System.Runtime.CompilerServices.IndexerNameAttribute' does not contain a definition for `errorarg'
// Line: 

using System.Runtime.CompilerServices;

public class E
{
   [IndexerName("xxx", errorarg = "")]
   public int this[int index] {
      get {
         return 0;
      }
   }
}
</string>
    <string>// cs0117-5.cs: `System.Reflection.BindingFlags' does not contain a definition for `Private'
// Line: 8

using System;
using System.Reflection;

public class Test {
	const BindingFlags Def = BindingFlags.Private | BindingFlags.Static;
	const BindingFlags SetBindingFlags = Def | BindingFlags.SetProperty;

	static void Main ()
	{
	}
}
</string>
    <string>// CS0117: `string' does not contain a definition for `Parse'
// Line: 10

using System;

class string_parse
{
	public static void Main ()
	{
		string drawBackLabel = string.Parse("absDrawBack");
	}
}</string>
    <string>// cs0117.cs: `int' does not contain a definition for `E'
// Line: 7

class T {
	public static int Main (string [] args )
	{
		int x = 1.E;
		return 0;
	}
}
</string>
  </Examples>
</ErrorDocumentation>