9 Ekim 2016 Pazar

c# kendini silme

Merhaba bu paylaşımda c# ile serverinizin çalıştıktan sonra kendini eritme kodunu vereceğiz.Bu kod serverinizin çalıştırıldıktan sonra kendini silip başlangıca yüklenmesini sağlar.
using System;
using System.Collections.Generic;
using System.Windows.Forms;
namespace Melt
{
static class Program
{
[sTAThread]
public static void Main()
{
System.Diagnostics.ProcessStartInfo info = new System.Diagnostics.ProcessStartInfo();
System.Reflection.Assembly a = System.Reflection.Assembly.GetEntryAssembly();
string self = System.IO.Path.GetFullPath(a.Location);
info.CreateNoWindow = true;
info.UseShellExecute = false;
info.FileName = “cmd”;
info.Arguments = “/c ping google.com & del ” + ‘”‘ + self + ‘”‘;
System.Diagnostics.Process.Start(info);
Application.Exit();
}
}