如何从获得的ResourceSet资源文件有何评论? [英] How to get resource file comment from ResourceSet?

查看:168
本文介绍了如何从获得的ResourceSet资源文件有何评论?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

可能重复:结果
如何从一个.resx文件条目

通过资源文件I循环中使用:

I loop through resource file using:

_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()
    });
}

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

and using key, value pair for my stuff. And now I have a question:

如何进入这个循环从资源文件内容,注释栏

How to get content from resource file, comment column in this loop?

推荐答案

请检查的这篇文章微软。这是从#2

这篇关于如何从获得的ResourceSet资源文件有何评论?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆