티스토리 뷰

파일 추가후, 속성에서 빌드방식을 포함 리소스(embedded resource)로 하면...
루트네임스페이스.리소스파일명.확장자 형식의 이름을 갖는다.
여기서 루트네임스페이스는 보통 프로젝트를 생성했을 때에 이름하고 같다.

잘 모르겠으면, 다음 방식으로 찾아보자...( 출처: http://msdn.microsoft.com/ko-kr/library/aa287526(v=vs.71).aspx )

System.Reflection.Assembly thisExe; 
thisExe = System.Reflection.Assembly.GetExecutingAssembly();
string [] resources = thisExe.GetManifestResourceNames();
string list = "";

// Build the string of resources.
foreach (string resource in resources)
   list += resource + "\r\n";


댓글