1. 程式人生 > >.net程式原始碼如何避免被反編譯

.net程式原始碼如何避免被反編譯

using System; namespace MyConsoleApp {  internal class Program  {    private static void Main(string[] args)    {      Console.WriteLine(PublicMethod());      Console.WriteLine(PrivateMethod());    }    public static string PublicMethod()    {      // Your source code here      return "Public Method"
;    }    private static string PrivateMethod()    {      // Your source code here      return "Private Method";    }  } }