forked from EWSoftware/SHFB
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathReferenceTest.cs
46 lines (42 loc) · 1.45 KB
/
ReferenceTest.cs
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
37
38
39
40
41
42
43
44
45
46
using ColorizerLibrary;
namespace TestDoc
{
/// <summary>
/// Third-party library reference test. With no reference link data, the type should still appear in the
/// TOC and topic titles on overloaded methods.
/// </summary>
public class ReferenceTest
{
/// <summary>
/// The parameter is a type in a referenced assembly, not documented, but should still show up in
/// the TOC title and topic title.
/// </summary>
/// <param name="colorizer">Colorizer</param>
/// <param name="language">Colorizer language</param>
public ReferenceTest(CodeColorizer colorizer, string language)
{
}
/// <summary>
/// Overload
/// </summary>
/// <param name="language">Colorizer language</param>
public ReferenceTest(string language)
{
}
/// <summary>
/// Method referencing type in third-party assembly
/// </summary>
/// <param name="colorizer">Colorizer</param>
public void SetColorizer(CodeColorizer colorizer)
{
}
/// <summary>
/// Method referencing type in third-party assembly
/// </summary>
/// <param name="colorizer">Colorizer</param>
/// <param name="language">Colorizer language</param>
public void SetColorizer(CodeColorizer colorizer, string language)
{
}
}
}