|
MixedAssemblyLoader v5
MixedAssemblyLoader_v5.rar
- source code C#
What's new: - Added 64 bits support;
But you would need to set "32 bits required" for 32 bits assemblies;
and unset "32 bits required" for 64 bits assemblies;
Example of usage:
Program.cs
namespace MixedAssemblyLoader
{
class Program
{
public static void Main(string[] args)
{
Console.WriteLine("Mixed assembly loader!");
string filename = "D:\\CFlowKiller.exe";
Assembly asm = LoadMixedAssembly(filename);
//Console.ReadKey(true);
}
All you need is to pass file name (string) to LoadMixedAssembly method.
|