Convert collection to comma delimited string
static String collectionToCommaDelimitedString(Iterable? collection) { return collectionToDelimitedString(collection, ','); }