Localization: How to map culture info to a script name or Unicode character range?

后端 未结 5 1433
温柔的废话
温柔的废话 2020-12-21 15:50

I need some information about localization. I am using .net 2.0 with C# 2.0 which takes care of most of the localization related issues. However, I need to manually draw the

5条回答
  •  孤城傲影
    2020-12-21 16:29

    I fully agree with mikiemacman. In addition, a given laguage doesn't necessarily uses all the letters of a script.

    Anyway, the closest I can think of is CultureInfo.TextInfo.ANSICodePage -> There are only a handful of ANSI code pages. You could have create a table (or a switch() statement, whatever) that lists the script for each ANSI codepage.

提交回复
热议问题