1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
// Compiler options: -doc:xml-059.xml
using System.Collections.Generic;
// <see cref="int?" /> - this is invalid 1584/1658
// <see cref="List" />
/// <see cref="M:System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke2 ( )" />
/// <see cref="Bar" />
/// <see cref="ListBase(string)" />
/// <see cref="T:ListBase(string)" />
/// <see cref="T:ListBase<string)" /><!-- it somehow passes -->
/// <see cref="T:List!$%Base()" /><!-- it somehow passes -->
/// <see cref="T:$%!" />
/// <see cref=".:Bar" />
/// <see cref="T:List(int)" />
public class Foo
{
static void Main ()
{
}
/// hogehoge
public string Bar;
/// fugafuga
public void ListBase (string s)
{
}
}
// <see cref="System.Nullable<System.Int32>" /> - cs1658/1574
/// <see cref="T:System.Nullable<System.Int32>" />
/// <see cref="T:System.Nullable(System.Int32)" />
public class ListBase<T>
{
}
|