Please see following example:
Visual BasicPublic Class Class1
Public Shared Function RemoveEmpty(list As IEnumerable(Of String)) As IEnumerable(Of String)
If list Is Nothing Then Return Nothing
Dim result As New List(Of String)
For Each item As String In list
If item Is Nothing Then Continue For
'CRR0027
If item.Length > 0 Then
result.Add(item)
End If
Next
Return result
End Function
End Class
Robert,
I have reproduced this issue locally, thank you for reporting it, please give us some time to fix it.