c# 다른 항목의 리소스 파일 반사

1957 단어 C#
다른 항목의 자원 파일을 반사해서 가져옵니다.
dll 또는 exe
try
{
    System.Reflection.Assembly dll = System.Reflection.Assembly.LoadFile(AppDomain.CurrentDomain.BaseDirectory + "Test.exe");
    ResourceManager resourceManager = new ResourceManager(dll.GetName().Name + ".Properties.Resources", dll);
    object obj = resourceManager.GetObject(picName.Replace('-', '_'));
    if (obj == null) return new Bitmap(22, 16);
    return ((System.Drawing.Bitmap)(obj));
}
catch
{
    throw new ArgumentException("");
}

좋은 웹페이지 즐겨찾기