//License Mode
StandardizationLogic standardization2 = new StandardizationLogic("John Smith 101", "asdfou==");
string addressToStandardize = "1500 Serpentine Road, Suite 100";
string result = standardization.StandardizeStreetAddress(addressToStandardize);
//This will output: 1500 SERPENTINE RD STE 100
Console.WriteLine(result);