c# dotfuscator 混淆后无法使用

Posted 内瑟斯

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c# dotfuscator 混淆后无法使用相关的知识,希望对你有一定的参考价值。

在实体类中忘记给字段加上 get ;set ;导致编译后程序无法使用。

下面这个(A代码)是可以正常混淆的。 

    public class PhoneUsedStatus
    {
        public int code { getset; }
        public bool takeExist { getset; }
        public bool PhoneUsed { getset; }
        public string msg { getset; }
    }

 下面这个(B代码)就不能正常混淆。

    public class PhoneUsedStatus
    {
        public int code ;
        public bool takeExist ;
        public bool PhoneUsed ;
        public string msg ;
    }

 

 暂时还不知道是为什么。上面两个唯一的区别就是一个字段有属性,一个没有。

以上是关于c# dotfuscator 混淆后无法使用的主要内容,如果未能解决你的问题,请参考以下文章

使用Dotfuscator加密混淆程序以及如何脱壳反编译

使用Dotfuscator加密混淆程序以及如何脱壳反编译

如何使用 Dotfuscator 混淆 Xamarin.Android 应用程序的公共成员?

Win10系统下Dotfuscator5.44出现无法找到ildasm.exe错误

(Unity)Unity自定义Debug日志文件,利用VS生成Dll文件并使用Dotfuscated进展混淆,避免被反编译

使用Dotfuscator保护你的Xamarin应用程序