c# dotfuscator 混淆后无法使用
Posted 内瑟斯
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c# dotfuscator 混淆后无法使用相关的知识,希望对你有一定的参考价值。
在实体类中忘记给字段加上 get ;set ;导致编译后程序无法使用。
下面这个(A代码)是可以正常混淆的。
public class PhoneUsedStatus
{
public int code { get; set; }
public bool takeExist { get; set; }
public bool PhoneUsed { get; set; }
public string msg { get; set; }
}
{
public int code { get; set; }
public bool takeExist { get; set; }
public bool PhoneUsed { get; set; }
public string msg { get; set; }
}
下面这个(B代码)就不能正常混淆。
public class PhoneUsedStatus
{
public int code ;
public bool takeExist ;
public bool PhoneUsed ;
public string msg ;
}
{
public int code ;
public bool takeExist ;
public bool PhoneUsed ;
public string msg ;
}
暂时还不知道是为什么。上面两个唯一的区别就是一个字段有属性,一个没有。
以上是关于c# dotfuscator 混淆后无法使用的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 Dotfuscator 混淆 Xamarin.Android 应用程序的公共成员?
Win10系统下Dotfuscator5.44出现无法找到ildasm.exe错误
(Unity)Unity自定义Debug日志文件,利用VS生成Dll文件并使用Dotfuscated进展混淆,避免被反编译