Add formatting options for Product.VariantName
In the ProductVariant.cs file in source, the Product.VariantName is created by adding a "," between all variant names. In some applications we would like to format the VariantName in a bulleted list for easier viewing. Could you provide a new method where you could pass in the string to use instead of the ",". Or perhaps a pair of strings - a start and an end tag. For example
string thisVariant = Product.VariantName("<li>", ",</li>");
would return a set of list items that could be wrapped in a "<ul>".
or if just one value were possible to replace the ",", then we could do this:
string thisVariant = Product.VariantName("</li><li>");
and we could just remove the trailing "<li>" tag.
