是否有关于如何在c#源中使用资源嵌入式dll的详细指南?我在Google上找到的所有指南似乎都没有多大帮助。这就是“制作一个新类”或“ILMerge”这个和“.NETZ”。但是我不确定如何使用ILMerge和.NETZ的东西,并且类的指南忽略了在制作类文件后要做什么,因为在这样做之后我没有发现任何新内容。例如,this。添加类和函数后,我不知道如何从我的资源中获取dll。
因此,具体而言,我正在寻找的指南是如何使用.dll
embedded into Resources
文件来class
调用{{1}},而不是遗漏的部分。请记住,我对C#编码不是很有经验。提前致谢。 :d
PS。尽量不要使用那些大词。我很容易迷路。
答案 0 :(得分:4)
您可以使用Assembly.GetManifestResourceStream
获取Stream
DLL,但为了对其执行任何操作,您需要将其加载到内存中并调用Assembly.Load
或提取它到文件系统(然后很可能仍然调用Assembly.Load
或Assembly.LoadFile
,除非你实际上已经依赖它了。)
加载程序集后,你必须使用反射来创建类的实例或调用方法等。所有这些都非常繁琐 - 特别是我永远不会记住调用{{的各种重载的情况。 1}}(或类似方法)。杰夫里希特的"CLR via C#"书将成为您办公桌上的有用资源。
您能否提供有关您为何需要这样做的更多信息?我已经将清单资源用于各种事情,但从不包含代码...有什么理由你不能将它与可执行文件一起发送?
这是一个完整的例子,虽然没有错误检查:
Assembly.Load
构建代码:
// DemoLib.cs - we'll build this into a DLL and embed it
using System;
namespace DemoLib
{
public class Demo
{
private readonly string name;
public Demo(string name)
{
this.name = name;
}
public void SayHello()
{
Console.WriteLine("Hello, my name is {0}", name);
}
}
}
// DemoExe.cs - we'll build this as the executable
using System;
using System.Reflection;
using System.IO;
public class DemoExe
{
static void Main()
{
byte[] data;
using (Stream stream = typeof(DemoExe).Assembly
.GetManifestResourceStream("DemoLib.dll"))
{
data = ReadFully(stream);
}
// Load the assembly
Assembly asm = Assembly.Load(data);
// Find the type within the assembly
Type type = asm.GetType("DemoLib.Demo");
// Find and invoke the relevant constructor
ConstructorInfo ctor = type.GetConstructor(new Type[]{typeof(string)});
object instance = ctor.Invoke(new object[] { "Jon" });
// Find and invoke the relevant method
MethodInfo method = type.GetMethod("SayHello");
method.Invoke(instance, null);
}
static byte[] ReadFully(Stream stream)
{
byte[] buffer = new byte[8192];
using (MemoryStream ms = new MemoryStream())
{
int bytesRead;
while ((bytesRead = stream.Read(buffer, 0, buffer.Length)) > 0)
{
ms.Write(buffer, 0, bytesRead);
}
return ms.ToArray();
}
}
}
答案 1 :(得分:2)
您可能需要使用ILMerge。看起来它会自然地为您解决问题。
http://research.microsoft.com/en-us/people/mbarnett/ILMerge.aspx