Is it possible to shorten the following function to a lambda expression?
Or (to do the trick by myself) what is the best and most understandable for beginners tutorial for lambda in vb.net?
Function getit(ByVal wert As Integer, ByVal sk As Integer, ByVal list As List(Of Array)) As String
Dim ergebnis As String
ergebnis = "Null"
For Each strg As String() In list
If wert >= Integer.Parse(strg(0)) And wert < Integer.Parse(strg(0)) + 5 And sk = Integer.Parse(strg(1)) Then
Return strg(2)
End If
Next
Return ergebnis
End Function