blob: e90c5412bd501b17f4e02f257c7e0b203e859617 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// CS3000: Methods with variable arguments are not CLS-compliant
// Line: 11
// Compiler options: -warnaserror -warn:1
using System;
[assembly: CLSCompliant (true)]
public class M
{
public void Method (__arglist)
{
}
}
|