Programmatic MSIL injection

前端 未结 7 2060
情书的邮戳
情书的邮戳 2021-02-09 08:01

Let\'s say I have a buggy application like this:

using System;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
          


        
7条回答
  •  生来不讨喜
    2021-02-09 08:24

    If the reason you don't want to redeploy the whole stuff is because it is really half a gig, you should probably use some sort of binary patch tool - that's the first result on Google:

    Binary Diff http://www.daemonology.net/bsdiff/

提交回复
热议问题