The below will do so -
Public NotInheritable Class ClassExtensions
Private Sub New()
End Sub
<System.Runtime.CompilerServices.Extension> _
Public Shared Function GetProperDate(dt As System.Nullable(Of DateTime)) As DateTime
Return If(dt.HasValue, dt.Value, New DateTime(1900, 1, 1))
End Function
End Class