blob: 53461fd289fde352112f48f2a88a4da64b1d91a3 (
plain)
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
|
// Compiler options: -doc:xml-046.xml -warnaserror
/// <summary />
public interface IExecutable {
/// <summary />
void Execute ();
/// <summary />
object Current {
get;
}
}
/// <summary>
/// <see cref="Execute" />
/// <see cref="Current" />
/// </summary>
public class A : IExecutable {
static void Main () {
}
/// <summary />
public void Execute () {
}
/// <summary />
public object Current {
get { return null; }
}
}
|