internationalization - How to format with non-English quotation marks in .NET? -
while on holiday in austria recently, noticed quotation marks looked different ones i'm used seeing here in britain. checking wikipedia shows things quite different around world.
given use culture-dependent decimal , list separators in c# code, i'd use correct quotation marks. know where, if anywhere, i'd find relevant characters in .net framework classes?
thanks.
that'll unicode characters, supported out-of-the-box in .net , character fonts.
an obscenely detailed discussion on wikipedia here: http://en.wikipedia.org/wiki/quotation_mark_glyphs.
in c#, you'd use e.g. "\u00ab" define left-guillemet: « - , on, based on table in article.
Comments
Post a Comment