3 回答
TA贡献1775条经验 获得超8个赞
System.Reflection.Assembly dll = System.Reflection.Assembly.LoadFile("文件路径");
Stream xmls = dll.GetManifestResourceStream("a.dll的命名空间.项目中的文件路径.文件名");
后面就可以把这个xml作为正常的xml文件的流来使用了。
不好意思,只是按照自己的想法写的。没有去实践。
这个问题是我写错函数了。用load函数的话。参数是dll的命名空间。我已经改了上面的source。
你试一下。
试了一下,这样就好用了。
LoadFile,中的参数是你的dll的路径。不是xml的路径。
TA贡献2021条经验 获得超8个赞
System.Reflection.Assembly dll = System.Reflection.Assembly.LoadFile("文件路径");
Stream xmls = dll.GetManifestResourceStream("a.dll的命名空间.项目中的文件路径.文件名");
TA贡献1811条经验 获得超6个赞
以下是我的代码
将我的自定义类的内容去掉以后就是获取DLL的嵌入资源的代码了
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
namespace Madison.Server.MethodFactory
{
public class MethodFactory
{
private static Assembly dllAssembly = null;
private MethodFactory() { }
private static List<MadisonMethodInfo> allMethodInfo = new List<MadisonMethodInfo>();
public static MethodFactory LoadDll(string dllFilePath)
{
dllAssembly = Assembly.LoadFile(dllFilePath);
var allTypes = dllAssembly.GetTypes();
LoadAllMethod(allTypes.ToList());
return new MethodFactory();
}
private static void LoadAllMethod(List<Type> allTypes)
{
if (allTypes.Count > 1)
{
var typeMethods = allTypes[0].GetMethods();
for (int i = 0; i < typeMethods.Count(); i++)
{
if (
typeMethods[i].GetCustomAttribute(typeof(MadisonMethodAttribute)) != null
&&
(typeMethods[i].GetCustomAttribute(typeof(MadisonMethodAttribute)) as MadisonMethodAttribute).UsingMethod
)
{
allMethodInfo.Add(MadisonMethodInfo.Create(typeMethods[i]));
}
}
}
}
}
}
- 3 回答
- 0 关注
- 124 浏览
添加回答
举报