public static string autoCompleteAddress(string input) { try { CustomCode x = new CustomCode(); return(x.autoCompleteAddress(input)); } catch (Exception ex) { string strErr = ex.Message + ex.StackTrace; return(""); } }