Option Strict On
Imports System
Public Class Person
Public Property DateOfBirth As Date
Public Property Name As String
Public Sub Speak(ByVal sentence As String)
Console.WriteLine(sentence)
End Sub
End Class