.NET Decompiler with support for PDB generation, ReadyToRun, Metadata (&more) - cross-platform!
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

9 lines
253 B

Imports System
Imports System.Linq
Public Class Issue2192
Public Shared Sub M()
Dim words As String() = {"abc", "defgh", "ijklm"}
Dim word As String = "test"
Console.WriteLine(words.Count(Function(w) w.Length > word.Length))
End Sub
End Class