Here’s a helpful little feature of VB 2005. The following is valid code:
<NotUndoable()> _
<NonSerialized()> _
Private mParent As Core.IEditableCollection
Notice that both attributes are independent – no need to use the harder syntax from 2003:
<NotUndoable(), NonSerialized()> _
Private mParent As Core.IEditableCollection
Very nice little nugget!