실행 시간에 다른 C# 파일 인 helloWorld를 컴파일하고 리플렉션 메서드를 사용하여 실행할 수있는 C# Windows Form myApp.exe 프로그램이 있습니다. myApp에서 helloWorld를 helloWorld.dll로 컴파일하기 위해 .NET CodeDomProvider.CompileAssemblyFromFile 메소드를 사용합니다.CodeExplorer을 사용하여 CodeDomProvider.CompileAssemblyFromFile에 의해 생성 된 C# DLL
VS Express를 사용하여 helloWorld.cs/dll (breakpoint, singlestepping 설정)을 디버깅 할 수있는 방법이 있습니까? 그렇지 않다면 정의 된 .NET 메소드를 사용하여 myApp.exe 내에서 (singlestepping 또는 breakpoint 설정을 통해) helloWorld를 디버깅 할 수있는 방법이 있습니까? 미리 감사드립니다.
당신이'CodeDomProvider.CompileAssemblyFromFile을'호출하는 방법을 제공 할 수있는 디버깅 할 수 있습니다? – Grundy
내가 가지고있는 것 : parameters.GenerateExecutable = true; parameters.GenerateInMemory = false; parameters.IncludeDebugInformation = true; – Kevin