성태의 닷넷 이야기
홈 주인
모아 놓은 자료
프로그래밍
질문/답변
사용자 관리
사용자
메뉴
아티클
외부 아티클
유용한 코드
온라인 기능
MathJax 입력기
최근 덧글
[정성태] VT sequences to "CONOUT$" vs. STD_O...
[정성태] NetCoreDbg is a managed code debugg...
[정성태] Evaluating tail call elimination in...
[정성태] What’s new in System.Text.Json in ....
[정성태] What's new in .NET 9: Cryptography ...
[정성태] 아... 제시해 주신 "https://akrzemi1.wordp...
[정성태] 다시 질문을 정리할 필요가 있을 것 같습니다. 제가 본문에...
[이승준] 완전히 잘못 짚었습니다. 댓글 지우고 싶네요. 검색을 해보...
[정성태] 우선 답글 감사합니다. ^^ 그런데, 사실 저 예제는 (g...
[이승준] 수정이 안되어서... byteArray는 BYTE* 타입입니다...
글쓰기
제목
이름
암호
전자우편
HTML
홈페이지
유형
제니퍼 .NET
닷넷
COM 개체 관련
스크립트
VC++
VS.NET IDE
Windows
Team Foundation Server
디버깅 기술
오류 유형
개발 환경 구성
웹
기타
Linux
Java
DDK
Math
Phone
Graphics
사물인터넷
부모글 보이기/감추기
내용
<div style='display: inline'> <h1 style='font-family: Malgun Gothic, Consolas; font-size: 20pt; color: #006699; text-align: center; font-weight: bold'>ILSpy의 nuget 라이브러리 버전 - ICSharpCode.Decompiler</h1> <p> 이번에도 ^^ 트윗으로 본 내용을 소개합니다.<br /> <blockquote class="twitter-tweet"><p lang="en" dir="ltr">Did you know that ILSpy is providing a nuget package allowing you to list (in 8 lines of code) the string literals compiled in a .NET assembly?<br>You will learn much more with <a href="https://twitter.com/hashtag/progc2?src=hash&ref_src=twsrc%5Etfw">#progc2</a><a href="https://twitter.com/konradkokosa?ref_src=twsrc%5Etfw">@konradkokosa</a> <a href="https://twitter.com/KooKiz?ref_src=twsrc%5Etfw">@KooKiz</a> <a href="https://t.co/COvIKSVz1j">pic.twitter.com/COvIKSVz1j</a></p>— Christophe Nasarre (@chnasarre) <a href="https://twitter.com/chnasarre/status/1685350012614578176?ref_src=twsrc%5Etfw">July 29, 2023</a></blockquote> <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > Did you know that ILSpy is providing a nuget package allowing you to list (in 8 lines of code) the string literals compiled in a .NET assembly? ; <a target='tab' href='https://twitter.com/chnasarre/status/1685350012614578176'>https://twitter.com/chnasarre/status/1685350012614578176</a> </pre> <br /> ILSpy의 nuget 버전으로 ICSharpCode.Decompiler가 있는데요, 이미 우리에게는 <a target='tab' href='https://www.sysnet.pe.kr/2/0/12880#icsharpcode'>Visual Studio에서도 심심치 않게 봤을 정도로</a> 은근 낯설지 않은 라이브러리입니다. ^^<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > ICSharpCode.Decompiler ; <a target='tab' href='https://www.nuget.org/packages/ICSharpCode.Decompiler'>https://www.nuget.org/packages/ICSharpCode.Decompiler</a> </pre> <br /> 다음은 닷넷 어셈블리의 <a target='tab' href='https://learn.microsoft.com/en-us/dotnet/standard/metadata-and-self-describing-components#metadata-tables-and-heaps'>"#Strings" 영역</a>을 뒤져 문자열 리터럴을 출력하는 소스 코드로,<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > using ICSharpCode.Decompiler.Metadata; using System.Reflection.Metadata; using System.Reflection.Metadata.Ecma335; namespace ConsoleApp1; // Install-Package ICSharpCode.Decompiler internal class Program { static void Main(string[] args) { string dllPath = typeof(Program).Assembly.Location; using (var peFile = new PEFile(dllPath)) { MetadataReader metadata = peFile.Metadata; UserStringHandle handle = MetadataTokens.UserStringHandle(0); do { string literal = metadata.GetUserString(handle); Console.WriteLine($"'{literal}'"); handle = metadata.GetNextHandle(handle); } while (!handle.IsNil); } } } </pre> <br /> 얼핏 ^^ ICSharpCode.Decompiler가 제공하는 듯하지만 (덧글에 "<a target='tab' href='https://twitter.com/Lucas_Trz'>@Lucas Trzesniewski</a>"가 지적한 것처럼) 실제로는 System.Reflection.Metadata로 연결시켜 접근하고 있습니다.<br /> <br /> 그래서 위의 소스 코드를 ICSharpCode 참조 없이 순수하게 System.Reflection.Metadata만을 이용해 다음과 같이 만들 수 있습니다.<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > using System.Reflection.Metadata; using System.Reflection.Metadata.Ecma335; using System.Reflection.PortableExecutable; namespace ConsoleApp1; internal class Program { static void Main(string[] args) { string dllPath = typeof(Program).Assembly.Location; FileStream stream = File.OpenRead(dllPath); PEReader peReader = new PEReader(stream); MetadataReader metadata = peReader.GetMetadataReader(); UserStringHandle handle = MetadataTokens.UserStringHandle(0); do { string literal = metadata.GetUserString(handle); Console.WriteLine($"'{literal}'"); handle = metadata.GetNextHandle(handle); } while (!handle.IsNil); } } </pre> <br /> 오호~~~ 저도 PortableExecutable에 대한 <a target='tab' href='https://learn.microsoft.com/en-us/dotnet/api/system.reflection.portableexecutable.pereader'>PEReader 타입</a>이 있는지 오늘 처음 알았습니다. ^^<br /> <br /> 그나저나, 제목과는 달리 (ICSharpCode.Decompiler가 아닌) System.Reflection.Metadata에 대한 소개가 되었군요. ^^<br /> </p><br /> <br /><hr /><span style='color: Maroon'>[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]</span> </div>
첨부파일
스팸 방지용 인증 번호
1863
(왼쪽의 숫자를 입력해야 합니다.)