'Trial Mode
Dim standardization As New StandardizationLogic()
'License Mode
Dim standardization2 As New StandardizationLogic("John Smith 101", "asdfou==")
Dim addressToStandardize As String = "1500 Serpentine Road, Suite 100"
Dim result As String = standardization.StandardizeStreetAddress(addressToStandardize)
'This will output: 1500 SERPENTINE RD STE 100
Console.WriteLine(result)