blob: 16f73402647e38ddc5013040d739ed38ba93249e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// CS0019: Operator `+' cannot be applied to operands of type `string' and `method group'
// Line: 11
using System;
class MainClass
{
public static void Main (string[] args)
{
foreach (object at in args) {
Console.WriteLine ("Tipo attributo: " + at.GetType);
}
}
}
|