2005-06-03 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / tests / xml-017.cs
1 // Compiler options: -doc:xml-017.xml
2 using System;
3
4 namespace Testing
5 {
6         public class Test
7         {
8                 public static void Main ()
9                 {
10                 }
11
12                 /// comment on method without parameter
13                 public static void Foo ()
14                 {
15                 }
16
17                 /// here is a documentation with parameters (and has same name)
18                 public static void Foo (long l, Test t, System.Collections.ArrayList al)
19                 {
20                 }
21
22                 /// here is a documentation with parameters (and has same name)
23                 public static void Foo (params string [] param)
24                 {
25                 }
26         }
27 }
28