repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
add comment
[mcs.git]
/
tests
/
test-xml-014.cs
blob
6ef31eab04b68b536e9c8b43f46ba36d7a931991
1
// Compiler options: -doc:xml-014.xml
2
using
System
;
3
4
namespace
Testing
5
{
6
public class
Test
7
{
8
public static void
Main
()
9
{
10
}
11
12
/// <summary>
13
/// comment for private property
14
/// </summary>
15
private string
PrivateProperty
{
16
get
{ return null; }
17
set
{ }
18
}
19
}
20
}
21