如何从ResourceSet获取资源文件注释?

时间:2012-10-15 18:55:53

标签: c# resource-files

  

可能重复:
  How to get the comment from a .resx file entry

我使用以下方法遍历资源文件:

_cityResources = Cities.ResourceManager.GetResourceSet(
                        CultureInfo.CurrentUICulture, 
                        true, 
                        true);

foreach (DictionaryEntry entry in CityResources)
{
    result.Add(new CityBounds()
    {
         Name = entry.Key as string,
         BoundingBox = (entry.Value as string).ToBoundingBox()
    });
}

并使用键,值对我的东西。 现在我有一个问题:

如何从此循环中的资源文件,注释列获取内容?

0 个答案:

没有答案