a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
29 lines
492 B
C#
29 lines
492 B
C#
// Compiler options: -doc:xml-017.xml
|
|
using System;
|
|
|
|
namespace Testing
|
|
{
|
|
public class Test
|
|
{
|
|
public static void Main ()
|
|
{
|
|
}
|
|
|
|
/// comment on method without parameter
|
|
public static void Foo ()
|
|
{
|
|
}
|
|
|
|
/// here is a documentation with parameters (and has same name)
|
|
public static void Foo (long l, Test t, System.Collections.ArrayList al)
|
|
{
|
|
}
|
|
|
|
/// here is a documentation with parameters (and has same name)
|
|
public static void Foo (params string [] param)
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|