quote only work on lambda on net_4_0
[mcs.git] / errors / cs0019-38.cs
blob16f73402647e38ddc5013040d739ed38ba93249e
1 // CS0019: Operator `+' cannot be applied to operands of type `string' and `method group'
2 // Line: 11
4 using System;
6 class MainClass
8 public static void Main (string[] args)
10 foreach (object at in args) {
11 Console.WriteLine ("Tipo attributo: " + at.GetType);