I need to convert some C# code into VB.NET. How should the below lambda event handler be written in VB.NET?
item.PropertyChanged += Function(s, e)
If e.PropertyName = "SomeProperty" Then
//do something
End If
End Function
Code converter tools do not provide any meaningful conversion for this.