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"
' Auto Properties - without the need for getters and setters Public Property Name As String = String.Empty
' Array literals - with type inferring eg without defining the type of the array or number of
elementsDim numbers = {1, 2, 3, 4}
more info:http://msdn.microsoft.com/en-us/library/ff637436.aspx