91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C#怎么把dll分別放在指定的文件夾

發布時間:2022-05-19 08:56:39 來源:億速云 閱讀:349 作者:iii 欄目:開發技術

這篇文章主要介紹“C#怎么把dll分別放在指定的文件夾”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“C#怎么把dll分別放在指定的文件夾”文章能幫助大家解決問題。

C#客戶端程序,生成后是一個exe,如果帶有大量的dll,那么dll和exe會混亂在一起,看起來非常混亂,我們可以建立一個文件夾,把dll放進去,這樣看起來就非常的清晰美觀。

一共有二種方法

第一種,配置方法。

1.我們建立一個winform程序,對2個dll分別引用,調用里面的方法

C#怎么把dll分別放在指定的文件夾

生成后的文件是這樣的

C#怎么把dll分別放在指定的文件夾

2.打開App.config文件夾,其中dll和dll/2相當于文件夾

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
    <startup> 
        <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8" />
    </startup>
	<runtime>
		<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
			<!--<publisherPolicy apply="yes" />這句不要也是可以的-->
			<probing privatePath="dll;dll/2" />
		</assemblyBinding>
	</runtime>
</configuration>

3.選擇所有的dll,把復制本地設置成 FALSE

C#怎么把dll分別放在指定的文件夾

4.打開項目的exe路徑,分別建立dll文件夾,把其中一個dll放進去 

C#怎么把dll分別放在指定的文件夾

建立dll/2文件夾,把另一個dll放進去

C#怎么把dll分別放在指定的文件夾

C#怎么把dll分別放在指定的文件夾

5.文件夾的效果

WindowsFormsApp4.exe

WindowsFormsApp4WindowsFormsApp4.exe.config

dll

...../ClassLibrary1.dll

...../2/ClassLibrary2.dll

6.效果,這樣就比較好看一些。

C#怎么把dll分別放在指定的文件夾

第二種,代碼方法

 1.同樣建立一個項目,選擇所有的dll,把復制本地設置成 FALSE

C#怎么把dll分別放在指定的文件夾

2.在窗體的初始化出寫入

C#怎么把dll分別放在指定的文件夾

AppDomain.CurrentDomain.AssemblyResolve += CurrentDomain_AssemblyResolve;
  static System.Reflection.Assembly CurrentDomain_AssemblyResolve(object sender, ResolveEventArgs args)
        {
            string path = System.IO.Path.Combine(AppDomain.CurrentDomain.BaseDirectory, @"dll2\");
            path = System.IO.Path.Combine(path, args.Name.Split(',')[0]);
            path = String.Format(@"{0}.dll", path);
            return System.Reflection.Assembly.LoadFrom(path);
        }

3.在項目的debug文件夾中,建立代碼中的名字dll2文件夾,把所有的dll扔進去即可。

C#怎么把dll分別放在指定的文件夾

 4.代碼

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
 
namespace WindowsFormsApp1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
            AppDomain.CurrentDomain.AssemblyResolve += CurrentDomain_AssemblyResolve;
        }
 
        private void Form1_Load(object sender, EventArgs e)
        {
            ClassLibrary1.Class1 c = new ClassLibrary1.Class1();
            ClassLibrary2.Class1 c1 = new ClassLibrary2.Class1();
 
            MessageBox.Show(c.A() + c1.B());
        }
 
        /// <summary>
        /// 對外解析dll失敗時調用
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="args"></param>
        /// <returns></returns>
        static System.Reflection.Assembly CurrentDomain_AssemblyResolve(object sender, ResolveEventArgs args)
        {
            string path = System.IO.Path.Combine(AppDomain.CurrentDomain.BaseDirectory, @"dll2\");
            path = System.IO.Path.Combine(path, args.Name.Split(',')[0]);
            path = String.Format(@"{0}.dll", path);
            return System.Reflection.Assembly.LoadFrom(path);
        }
    }
}

關于“C#怎么把dll分別放在指定的文件夾”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

dll
AI

通海县| 开鲁县| 略阳县| 宜兰县| 上犹县| 乾安县| 乐山市| 丹巴县| 嘉鱼县| 民权县| 苏尼特左旗| 福安市| 霍城县| 桐乡市| 封开县| 巴塘县| 八宿县| 韩城市| 皮山县| 阜平县| 库伦旗| 广平县| 竹北市| 玉屏| 上林县| 麻城市| 沂水县| 盘山县| 桃园县| 临武县| 金坛市| 靖西县| 呼和浩特市| 区。| 舞钢市| 大荔县| 稷山县| 嘉禾县| 斗六市| 湖州市| 武宣县|