[wasm] Fix WASM CI script. (#6741)
[mono-project.git] / mcs / errors / cs1061-8.cs
blobc69037583ac5745101c7f516382916b30f13b0ac
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 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;