c#(4)
-
[C#] Dll의 PublicKeyToken 찾기
https://stackoverflow.com/questions/1710935/how-do-i-find-the-publickeytoken-for-a-particular-dll How do I find the PublicKeyToken for a particular dll? I need to recreate a provider in my web.config file that looks something like this: 0) { foreach (var assembly in assemblies) { Console.WriteLine(" - " + assembly.FullName + ", ProcessorArchitecture=" + assembly.ProcessorArchitecture); } return ..
2022.12.19 -
웹 요청 순서 시각화
https://www.codeproject.com/Articles/5345372/Web-Request-Sequence-Visualization Web Request Sequence Visualization Here, I'll try to create a system that will allow us to quickly plot the sequence diagram of events during my request. www.codeproject.com 여기서는 나는 웹서비스를 요청하는 중간에 이벤트의 시퀀스 다이어그램을 신속하게 구성할 수 있는 시스템을 만들려고 합니다. 최신 웹 서비스에 대한 요청들은 매우 복잡합니다. 당신이 호출하는 서비스는 다른 서비스를 호출할 수 있습니다. 그것들은 등등의 다른 서비..
2022.12.11 -
DisconnectedContext 오류
COM Add-in: Resolve the error DisconnectedContext in WinWord.exe I built an add-on to Microsoft Word. When the user clicks a button, it runs a number of processes that export a list of Microsoft Word documents to Filtered HTML. This works fine. Where the code f... stackoverflow.com 질문 나는 Microsoft Word에 애드온을 만들었습니다. 사용자가 버튼을 클릭하면 Microsoft Word 문서 목록을 Filtered HTML로 내보내는 기능으로 여러 프로세스를 실행합니다. 이 애..
2022.04.28 -
[C#] 바이너리 파일 표시기 만들기 - ByteViewer 클래스
바로 전 글에서 파일에서 BOM 표시를 제거 하는 예제를 만들어 보았습니다. https://tobee.tistory.com/10 BOM 문자 제거하기 https://www.rgagnon.com/javadetails/java-handle-utf8-file-with-bom.html Real's How-to Real's HowTo : Useful code snippets for Java, JS, PB and more www.rgagnon.com XML 파일을 파싱하려다 보니 너무 많.. tobee.tistory.com 그럼 이 BOM이 파일에서 제거 되었는 지 여부를 확인 해야하는 데요. 파일의 첫 머리 몇 바이트를 점검 해 보면 되는 바이기 때문에 간단히 프로그램을 하나 만들어 보면 어떨까 합니다. 다음 사..
2022.04.10