<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1929</ErrorName>
  <Examples>
    <string>// CS1929: Type `System.Collections.IList' does not contain a member `Frobnicate' and the best extension method overload `Extensions.Frobnicate&lt;Test&gt;(this Test)' requires an instance of type `Test'
// Line: 20

using System;
using System.Collections;

static class Extensions
{
	public static void Frobnicate&lt;T&gt; (this T foo) where T : IList
	{
	}
}

public class Test
{
	IList mFoo;

	void Frobnicate ()
	{
		mFoo.Frobnicate&lt;Test&gt; ();
	}
}
</string>
    <string>// CS1929: Type `int' does not contain a member `Foo' and the best extension method overload `S.Foo(this uint)' requires an instance of type `uint'
// Line: 15

static class S
{
	public static void Foo (this uint i)
	{
	}
}

class B
{
	static void Main ()
	{
		55.Foo ();
	}
}
</string>
    <string>// CS1929: Type `int' does not contain a member `Check' and the best extension method overload `C.Check(this string)' requires an instance of type `string'
// Line: 12

static class C
{
	public static void Check (this string s)
	{
	}

	static void Main ()
	{
		1.Check ();
	}
}
</string>
  </Examples>
</ErrorDocumentation>