Video of using MVP for both Web and Windows forms:
'via Blog this'
' multiline Lambda expression Dim addUpFunc = Function(x As Integer, y As Integer) As Double Return x + y End Function
' Collection initaliser Dim list As New List(Of String) From {"Rahman", "Hosha"}' Multi line continuation without the need for under score _ Dim sql = "Select name, " & "Age, city, country from " & "From Individual"' Array literals - with type inferring eg without defining the type of the array or number ofelementsDim numbers = {1, 2, 3, 4}more info:http://msdn.microsoft.com/en-us/library/ff637436.aspx