<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS1928</ErrorName>
  <Examples>
    <string>// CS1928: Type `System.Collections.IList' does not contain a member `Frobnicate' and the best extension method overload `Extensions.Frobnicate&lt;Test&gt;(this Test)' has some invalid arguments
// 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>// CS1928: Type `int' does not contain a member `Foo' and the best extension method overload `S.Foo(this uint)' has some invalid arguments
// Line: 15

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

class B
{
	static void Main ()
	{
		55.Foo ();
	}
}
</string>
    <string>// CS1928: Type `string' does not contain a member `Check' and the best extension method overload `C.Check(this string, int)' has some invalid arguments
// Line: 12

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

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