从引用的程序集中读取.resx文件名
本文关键字:读取 resx 文件名 集中 程序集 引用 程序 | 更新日期: 2023-09-27 18:19:41
我想从引用程序集的文件夹中检索可用的资源文件。我可以访问程序集并获得如下名称:
System.Reflection.Assembly assembly = System.Reflection.Assembly.GetAssembly(typeof(AppResources));
string[] names = assembly.GetManifestResourceNames();
但这并没有给我提供我需要的名称,即AppResources.resx、AppResources.en-US.resx等。我该如何读取这些名称?
非常感谢
您将在GetManifestResourceNames中找到作为的AppResources.resx
NamespaceOfAppResources。AppResources。资源
特定于语言的资源不在主程序集中。
请参阅处理程序集资源:http://www.codeproject.com/KB/dotnet/Extracting_Embedded_Image.aspx