Image リンクを確認してください。MSIL ファイルからリソース コンテンツを抽出する必要があります。ILSpy を使用してファイルをデバッグしましたが、他の方法で行う必要があります。手動のインターセプトを使用せずに。
質問する
245 次
1 に答える
1
次のようなものでそれを行うことができます:
public class LoadAssemblyInfo : MarshalByRefObject
{
public string AssemblyName { get; set; }
public Tuple<string, byte[]>[] Streams;
public void Load()
{
Assembly assembly = Assembly.ReflectionOnlyLoad(AssemblyName);
string[] resources = assembly.GetManifestResourceNames();
var streams = new List<Tuple<string, byte[]>>();
foreach (string resource in resources)
{
ManifestResourceInfo info = assembly.GetManifestResourceInfo(resource);
using (var stream = assembly.GetManifestResourceStream(resource))
{
byte[] bytes = new byte[stream.Length];
stream.Read(bytes, 0, bytes.Length);
streams.Add(Tuple.Create(resource, bytes));
}
}
Streams = streams.ToArray();
}
}
// Adapted from from http://stackoverflow.com/a/225355/613130
public static Tuple<string, byte[]>[] LoadAssembly(string assemblyName)
{
LoadAssemblyInfo lai = new LoadAssemblyInfo
{
AssemblyName = assemblyName,
};
AppDomain tempDomain = null;
try
{
tempDomain = AppDomain.CreateDomain("TemporaryAppDomain");
tempDomain.DoCallBack(lai.Load);
}
finally
{
if (tempDomain != null)
{
AppDomain.Unload(tempDomain);
}
}
return lai.Streams;
}
次のように使用します。
var streams = LoadAssembly("EntityFramework");
streams
は の配列ですTuple<string, byte[]>
。Item1
はリソースの名前で、 はリソースItem2
のバイナリ コンテンツです。
アンロード ( / ) さAssembly.ReflectionOnlyLoad
れる別のものを実行するため、非常に複雑です。AppDomain
AppDomain.CreateDomain
AppDomain.Unload
于 2015-05-21T14:27:15.230 に答える