repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
add monotouch sources file
[mcs.git]
/
errors
/
cs3000.cs
blob
e90c5412bd501b17f4e02f257c7e0b203e859617
1
// CS3000: Methods with variable arguments are not CLS-compliant
2
// Line: 11
3
// Compiler options: -warnaserror -warn:1
4
5
using
System
;
6
7
[
assembly
:
CLSCompliant
(
true
)]
8
9
public class
M
10
{
11
public void
Method
(
__arglist
)
12
{
13
}
14
}