0

Image リンクを確認してください。MSIL ファイルからリソース コンテンツを抽出する必要があります。ILSpy を使用してファイルをデバッグしましたが、他の方法で行う必要があります。手動のインターセプトを使用せずに。

http://i.stack.imgur.com/ZQdRc.png

4

1 に答える 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れる別のものを実行するため、非常に複雑です。AppDomainAppDomain.CreateDomainAppDomain.Unload

于 2015-05-21T14:27:15.230 に答える