• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

C#dll作为文件资源嵌入到Resource

原作者: [db:作者] 来自: [db:来源] 收藏 邀请
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
using System.Reflection;
using System.IO;

namespace WindowsFormCaller
{
    static class Program
    {
        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        [STAThread]
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);

            AppDomain.CurrentDomain.AssemblyResolve += 
            delegate(object sender, ResolveEventArgs senderArgs)
            {
                //Console.WriteLine("AssemblyResolve...!!!");
                Assembly executingAssembly = Assembly.GetExecutingAssembly();
                string name = new AssemblyName(executingAssembly.FullName).Name;
                string str2 = new AssemblyName(senderArgs.Name).Name;
                string str3 = name + "." + str2 + ".dll";
                //Console.WriteLine("!executingAssembly.FullName={0},{1}", executingAssembly.FullName, str3);
                using (Stream stream = executingAssembly.GetManifestResourceStream(str3))
                {
                    byte[] buffer = new byte[stream.Length];
                    stream.Read(buffer, 0, buffer.Length);
                    return Assembly.Load(buffer);
                }
            };

            //InnerMath.Math.SayHi();
            Application.Run(new Form1());
        }
    }
}


using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using InnerMath;

namespace WindowsFormCaller
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            InnerMath.Math.SayHi();
        }
    }
}

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C++中explicit的用法发布时间:2022-07-14
下一篇:
C#Winform进程信息的获取发布时间:2022-07-14
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap