linux-packaging-mono/mcs/tests/test-xml-017.cs
Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

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)
{
}
}
}