2010-04-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs1061-2.cs
blob2f391bdcfbd130ada40b2644ad952be4d53b545f
1 // CS1061: Type `string' does not contain a definition for `Length2' and no extension method `Length2' of type `string' could be found (are you missing a using directive or an assembly reference?)
2 // Line: 12
5 using System.Linq;
7 public class M
9 public static void Main ()
11 var e = from values in new [] { "value" }
12 let length = values.Length2
13 select length;