使用Linq读取资源文件

            ResXResourceReader resxr = new ResXResourceReader(txt_WebResourceOpenFile.Text);



            IEnumerable<DictionaryEntry> rrt = from DictionaryEntry d in resxr select d;



            var result = (from DictionaryEntry d in resxr select d)

  

你可能感兴趣的:(LINQ)