在代码中动态加载 DLL 文件时,可以指定路径。这通常适用于需要根据配置文件动态加载外部组件的情况。例如:
using System; using System.Reflection; class Program { static void Main(string[] args) { string dllPath = "path/to/your/dll/MyLibrary.dll"; // 从配置文件读取路径 // 动态加载 DLL Assembly.LoadFrom(dllPath); Console.WriteLine($"Loaded: {dllPath}"); } }
如果您希望在 App.config
中指定 DLL 文件的路径,然后在代码中读取它,可以将其添加到配置文件中,例如:
<configuration> <appSettings> <add key="MyLibraryPath" value="path/to/your/dll/MyLibrary.dll" /> </appSettings> </configuration>
然后在代码中读取该路径:
using System; using System.Configuration; using System.Reflection; class Program { static void Main(string[] args) { string dllPath = ConfigurationManager.AppSettings["MyLibraryPath"]; // 动态加载 DLL Assembly.LoadFrom(dllPath); Console.WriteLine($"Loaded: {dllPath}"); } }
appsettings.json
(针对 .NET Core)如果您使用的是 .NET Core,可以在 appsettings.json
中指定 DLL 路径:
{ "LibrarySettings": { "MyLibraryPath": "path/to/your/dll/MyLibrary.dll" } }
然后在代码中加载配置:
using Microsoft.Extensions.Configuration; using System; using System.Reflection; class Program { static void Main(string[] args) { var config = new ConfigurationBuilder() .SetBasePath(AppContext.BaseDirectory) .AddJsonFile("appsettings.json") .Build(); string dllPath = config["LibrarySettings:MyLibraryPath"]; // 动态加载 DLL Assembly.LoadFrom(dllPath); Console.WriteLine($"Loaded: {dllPath}"); } }
如果 DLL 是供应用程序使用的,通常情况下,将其放在应用程序的输出目录(如 bin/Debug
或 bin/Release
下)是最简单的做法。这样,您不需要动态指定路径,CLR 会自动加载。
标签: 来源:
本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享; 2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关; 3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关; 4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除; 5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。