我有一个winform应用程序,我完成了业务模型和更新功能。但是当我了解安全性.Net时,我发现几乎不可能通过混淆来防止破解/黑客入侵。
所以我想将99.99%的源代码移到云中。但是我没有找到任何有用的文档。
我可以按照以下说明做我的想法吗?
using ....;
namespace myApp
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
public GetSourceClass()
{
// Here i want get all source code, include all class and all
// variables from server.Is it possible?
}
private void Form1_Load(object sender, EventArgs e)
{
GetSourceClass();
}