... or one of its dependencies. The system cannot find the file specified... 지정된 dll 로드 실패

10425 단어 WCFWPF
우리는 코드를 쓸 때 가끔 아래의 문제에 부딪힐 수 있다.
... or one of its dependencies. The system cannot find the file specified... 이런 문제는 주로 사용자에게 현재 dll에서 찾을 수 없거나 상응하는 인용이 부족하다는 것을 알려준다.여러분은 아래의catch문구를 더해서 시험해 보셔도 무방합니다.우리는 errorMessage를 보면 문제가 어디에서 발생했는지 알 수 있다.
using System.IO;
using System.Reflection;

try
{
    //The code that causes the error goes here.
}
catch (ReflectionTypeLoadException ex)
{
    StringBuilder sb = new StringBuilder();
    foreach (Exception exSub in ex.LoaderExceptions)
    {
        sb.AppendLine(exSub.Message);
        if (exSub is FileNotFoundException)
        {
            FileNotFoundException exFileNotFound = exSub as FileNotFoundException;
            if(!string.IsNullOrEmpty(exFileNotFound.FusionLog))
            {
                sb.AppendLine("Fusion Log:");
                sb.AppendLine(exFileNotFound.FusionLog);
            }
        }
        sb.AppendLine();
    }
    string errorMessage = sb.ToString();
    //Display or log the error based on your application.
}

좋은 웹페이지 즐겨찾기