linux-packaging-mono/mcs/tests/test-xml-017.cs

29 lines
492 B
C#
Raw Normal View History

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