eol
[mcs.git] / tests / test-xml-029.cs
blob76d90a96eae7646ff0a61721736e860dd78e6202
1 // Compiler options: -doc:xml-029.xml
2 using System;
4 class Test1 {
5 /// <summary>
6 /// Some test documentation
7 /// </summary>
8 void Foo(){}
10 public static void Main () {}
13 /// <summary>
14 /// Publicly available interface
15 /// </summary>
16 public interface ITest2 {
18 /// <summary>
19 /// Some test documentation
20 /// </summary>
21 void Foo();
23 /// <summary>
24 /// Some test documentation
25 /// </summary>
26 long Bar { get; }
28 /// <summary>
29 /// Some test documentation
30 /// </summary>
31 event EventHandler EventRaised;