代码之家  ›  专栏  ›  技术社区  ›  ksa

.resx文件的字数

  •  3
  • ksa  · 技术社区  · 15 年前

    我们将处理.resx文件进行翻译。由于这些文件除了要翻译的字符串之外还有很多XML数据,所以我正在寻找一种方法,可以计算翻译的单词/字符串。我们已经让WinForm创建了resx文件

    谢谢。

    1 回复  |  直到 15 年前
        1
  •  3
  •   BlueMonkMN    15 年前

    查找名为text的属性和其他表示您关心的可翻译字符串的属性。

    System.Resources.ResXResourceReader reader = new System.Resources.ResXResourceReader(@"..\..\Form1.resx");
    foreach(System.Collections.DictionaryEntry de in reader)
    {
       if (((string)de.Key).EndsWith(".Text"))
       {
          System.Diagnostics.Debug.WriteLine(string.Format("{0}: {1}", de.Key, de.Value));
       }
    }