0
dll如何通過反射獲取應用程序的ResourceManager,即條目程序集?獲取應用程序標準資源管理器
dll如何通過反射獲取應用程序的ResourceManager,即條目程序集?獲取應用程序標準資源管理器
嘗試此操作,其中rmc是完全限定的資源名稱,如果使用默認方式(項目的屬性,然後是新資源)來創建資源文件,它將是[YourProjectName] .Properties.Resources。
ResourceManager rm = new ResourceManager("rmc",Assembly.GetCallingAssembly());
您還可以使用資源的路徑才能到資源管理器,看看here