目前,我需要显示折叠土耳其符号(838,72 TL)。
我使用 ("tr-TR") 作为特定文化来获取货币符号。
请帮助我如何获得 TL 作为这种文化的货币符号?
stringBuilder.Append("<td class=\"price\">" + Environment.NewLine);
// No just use the value we have
// nnn,nn TL
stringBuilder.Append(FormatPrice(model.Country.SpecificCulture, retailerProduct.Price));
stringBuilder.Append("</td>" + Environment.NewLine);