라벨이 english인 게시물 표시

160516 .NET Application Debugging

이미지
Edit 160516 .NET Application Debugging 황현동 노트북 .net c# debugging study windbg english 160516 .NET Application Debugging Summary Sample Sources Global exception handling Simple application for test At occuring an excption, print the exception and callstack information.(like a usual .NET application) Create dump file manually Download windbg By windbg, load dump file, and analyze Load dump file Analyze dump file Load at VS debugger Note that when using VS debugger To create dump files from within .NET applications Summary I'll introduce the debugging solution of .NET Application that is variety and pratical. Global exception handling Most frequently used. Use as the after-death debugging. Usually upload the exception log include the callstack information, and analyze it at the global exception routine. By this callstack information, about 80% ~ 90% errors can be anaylized. But this cannot analyze the exact variables'...