repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs0019-38.cs
blob
16f73402647e38ddc5013040d739ed38ba93249e
1
// CS0019: Operator `+' cannot be applied to operands of type `string' and `method group'
2
// Line: 11
3
4
using
System
;
5
6
class
MainClass
7
{
8
public static void
Main
(
string
[]
args
)
9
{
10
foreach
(
object
at
in
args
) {
11
Console
.
WriteLine
(
"Tipo attributo: "
+
at
.
GetType
);
12
}
13
}
14
}