本文介绍了解码dll中内部和私有类的名称的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

美好的一天

我在ILSpy或反编译器中打开了c#dll,出现了问题.所有内部私有类,接口和结构名称均已编码.例子

I opened c# dll in ILSpy or decompilers and had problem. All internal, private classes, interfaces and structs names are encoded. Example

[StructLayout(LayoutKind.Explicit)]
internal struct #=qYsrnlrtLLaw6kxIrnV3snTkDFIvKsoBVSzO2RI6ZyzAqP6kaxche8pVVtXGrbjQG
{
	[FieldOffset(0)]
	public ushort #=qo7dKrROV3JXGVuUqmQYziw==;

	[FieldOffset(2)]
	public ushort #=qXVUfy2pe$Mn$pZf43U6_hw==;

	[FieldOffset(4)]
	public ushort #=qExtOAecuIskWs3y1$ddJQQ==;

	[FieldOffset(6)]
	public ushort #=qTFCMXNy5AX9eHiaPUjPevQ==;
}

如何解码此名称?

推荐答案

>>如何解码此名称?

>>How to decode this names?

据我了解,ILSpy 应该有自己的算法,这个问题与 ILSpy.

Per my understanding, ILSpy should have its own algorithm, This issue more related toILSpy.

这里是有关ILSpy的讨论论坛.请尝试在其官方网站上寻求更好的支持.

Here is a Discussion forum about ILSpy. Please try to ask in their official website for better support.

最诚挚的问候,

克里斯汀


这篇关于解码dll中内部和私有类的名称的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-22 19:11