// Compiler options: -doc:xml-060.xml /warnaserror /warn:4
using System.Collections.Generic;
namespace Test {
/// T:Test.DocMe
///
class DocMe {
/// M:Test.DocMe.UseList(System.Collections.Generic.List{System.Int32})
public static void UseList (List list) {}
/// M:Test.DocMe.Main
public static void Main ()
{
}
}
/// T:Test.DocMe`1
class DocMe {
/// M:Test.DocMe`1.UseList(System.Collections.Generic.List{`0})
public void UseList (List list) {}
/// M:Test.DocMe`1.UseList`1(System.Collections.Generic.List{``0})
public void UseList (List list) {}
/// M:Test.DocMe`1.RefMethod`1(`0@,``0@)
public void RefMethod (ref T t, ref U u) {}
}
}