C
Chris Dunaway
Just got my hands on Whidbey. Here are a few interesting changes that you
may not be aware of:
1. Continue statement on Do, For and While commands
2. Default Instances of certain classes are back (such as forms).
3. Properties can now have mixed access levels. For example you can
declare a property like this:
Public Property SomeVal() As Integer
Get
Return m_val
End Get
Private Set(ByVal Value As Integer)
m_val = Value
End Set
End Property
4. IsNot keyword. Now instead of If Not someObj Is Nothing, you can
write If someObj IsNot Nothing
Not to mention Operator Overloading, Unsigned types, Generics, Partial
types.
may not be aware of:
1. Continue statement on Do, For and While commands
2. Default Instances of certain classes are back (such as forms).
3. Properties can now have mixed access levels. For example you can
declare a property like this:
Public Property SomeVal() As Integer
Get
Return m_val
End Get
Private Set(ByVal Value As Integer)
m_val = Value
End Set
End Property
4. IsNot keyword. Now instead of If Not someObj Is Nothing, you can
write If someObj IsNot Nothing
Not to mention Operator Overloading, Unsigned types, Generics, Partial
types.