Static / Shared Helper Functions vs Built-In Methods
- by Nathan
This is a simple question but a design consideration that I often run across in my day to day development work. Lets say that you have a class that represents some kinds of collection.
Public Class ModifiedCustomerOrders
Public Property Orders as List(Of ModifiedOrders)
End Class
Within this class you do all kinds of important work, such…