使用ResXResourceReader时,如何判断资源是嵌入文件还是嵌入字符串

时间:2011-11-16 20:56:36

标签: c# resx

我有一个单独的应用程序(用于拼写检查我的.resx文件),它作为预构建事件运行。但是,如果.resx文件包含文本文件(例如xml),我的应用程序将加载该文件并尝试拼写检查它。这不是我想要的。有没有办法从ResXResourceReader判断加载的资源是否实际上是一个文件?

代码示例如下所示:

                ResXResourceReader reader = new ResXResourceReader(filename);
                ResourceSet resourceset = new ResourceSet(reader);

                Dictionary<DictionaryEntry, object> newvalues = new Dictionary<DictionaryEntry, object>();

                foreach (DictionaryEntry entry in resourceset)
                {
                    //Figure out in this 'if' if it is an embedded file and should be ignored.
                    if (entry.Key.ToString().StartsWith(">>") || !(entry.Value is string) || string.Compare((string)entry.Value, "---") == 0)
                        continue;
                 }

1 个答案:

答案 0 :(得分:6)

是。在UseResXDataNodes上设置ResXResourceReader将导致字典值为ResXDataNode而不是实际值,您可以使用它来确定它是否是文件。像这样:

var rsxr = new ResXResourceReader("Test.resx");
rsxr.UseResXDataNodes = true;
foreach (DictionaryEntry de in rsxr)
{
    var node = (ResXDataNode)de.Value;
    //FileRef is null if it is not a file reference.
    if (node.FileRef == null)
    {
        //Spell check your value.
        var value = node.GetValue((ITypeResolutionService) null);
    }
}