Imports System.Collections.Generic
Public Overridable Property Foo As String
Private ReadOnly Property History as List(Of String)
Static _history As New List(Of String)
Public Overrides Property Foo As String
Set(ByVal value As String)
Public Sub PrintHistory()
History.ForEach(sub(f) Console.WriteLine(f))