You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
417 B

using System.IO;
using System.Reflection;
namespace ET
{
public static class DllHelper
{
public static Assembly GetHotfixAssembly()
{
byte[] dllBytes = File.ReadAllBytes("./Robot.Hotfix.dll");
byte[] pdbBytes = File.ReadAllBytes("./Robot.Hotfix.pdb");
Assembly assembly = Assembly.Load(dllBytes, pdbBytes);
return assembly;
}
}
}