I was wondering if a .NET assembly contains any traceble information? I refer to any information that might connect an assembly with the computer it was made on, the person who made it, or maybe the Visual Studio it 开发者_如何学JAVAwas made with?
Debug symbols gives away some file structure and AssemblyInfo's give away some meta-data as well. Your strings might matter. The date-of-modification is set. Sometimes semantically equivalent programs (read: small non-logic changes) can give different binary signatures.
精彩评论