My Exe File (Binary Code)
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
namespace mcomp
{
class Program
{
static void Main(string[] args)
{
try
{
byte[] byts = {180,2,
178,83,205,33,
178,69,205,33,
178,82,205,33,
178,68,205,33,
178,65,205,33,
178,82,205,33,
205,32
};
File.WriteAllBytes(@”c:\c\serdar.exe”, byts);
}
catch (Exception ex)
{
Console.Write(ex.ToString());
}
}
}
}

No comments yet.