Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/api-doc-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Pryor <jpryor@novell.com>2008-11-16 05:02:59 +0300
committerDuncan Mak <duncanm@microsoft.com>2016-10-08 03:28:34 +0300
commitc49a71c040f0b1f97a6c4bbfafaacea73a1007a5 (patch)
tree6f858e4a31b2f18b172c5feeab99edbedbdd51de /mdoc/Test/DocTest-v1.cs
parente5842ca04da76cbc63b083bf751411067fc2bd54 (diff)
* Mono.Documentation/monodocer.cs: Properties on interfaces shouldn't
have `abstract' on them. * Test/DocTest-v1.cs: Add a property to an interface to check above. * Test/en.expected.importslashdoc/Mono.DocTest/Widget+IMenuItem.xml, Test/en.expected.since/Mono.DocTest/Widget+IMenuItem.xml, Test/en.expected/Mono.DocTest/Widget+IMenuItem.xml, Test/html.expected/Mono.DocTest/Widget+IMenuItem.html, Test/msxdoc-expected.importslashdoc.xml: Flush. svn path=/trunk/mcs/; revision=118949
Diffstat (limited to 'mdoc/Test/DocTest-v1.cs')
-rw-r--r--mdoc/Test/DocTest-v1.cs8
1 files changed, 7 insertions, 1 deletions
diff --git a/mdoc/Test/DocTest-v1.cs b/mdoc/Test/DocTest-v1.cs
index 661de4e7..8babb287 100644
--- a/mdoc/Test/DocTest-v1.cs
+++ b/mdoc/Test/DocTest-v1.cs
@@ -190,7 +190,13 @@ namespace Mono.DocTest {
public unsafe float **ppValues;
/// <remarks><c>T:Mono.DocTest.Widget.IMenuItem</c>.</remarks>
- public interface IMenuItem {}
+ public interface IMenuItem {
+ /// <remarks><c>M:Mono.DocTest.Widget.IMenuItem.A</c>.</remarks>
+ void A ();
+
+ /// <remarks><c>P:Mono.DocTest.Widget.IMenuItem.P</c>.</remarks>
+ int B {get; set;}
+ }
/// <remarks><c>T:Mono.DocTest.Widget.Del</c>.</remarks>
public delegate void Del (int i);