如何“虚拟化”字符串以进行代码混淆

时间:2019-02-11 17:53:53

标签: c# .net string

这是一个真正的新手问题。请不要对我大喊。我确实没有运气就搜索过它。在C#DotNet中“虚拟化字符串”是什么意思?假设我有以下代码。虚拟化字符串是什么意思?

using System;

namespace MyNameSpace
{
    public class MyClass
    {
        private const string _SECRET_STRING = "keep this secret";
        private string GetSecretString()
        {
            return(_SECRET_STRING);
        }
    }
}

0 个答案:

没有答案