0

I have a winform app, I completed with business model and update function. But when I learn about security .Net, I found that almost impossible to anti crack/hacking with obfuscation.

So I want move 99.99% source code to cloud. But I've not found any doc that useful for making it.

Can I do my idea as below:

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();
    }
20
  • You want to create an application that downloads your code from the cloud? What exactly do you want to do with it? Commented Jul 22, 2018 at 9:44
  • Oh no. i dont want download code, because i dont want store source code on computer. I just want server send source(data) to client at //Runtime. After close app, source disappear. Thank you! Commented Jul 22, 2018 at 10:01
  • @TryHardMore This achieves nothing. If code is running on your machine, it is found in memory, and anyone with access to that machine can decompile it. Commented Jul 22, 2018 at 10:06
  • @Rotem So move source to cloud is useless? Can you give me some suggestion :( Commented Jul 22, 2018 at 10:11
  • 1
    What you want to do is build web services that have all of your proprietary business logic. Your forms application can make HTTP calls to do everything. Commented Jul 22, 2018 at 10:57

0

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.