码迷,mamicode.com
首页 >  
搜索关键字:appdomain    ( 269个结果
进程、应用程序域与上下文之间的关系
进程、应用程序域与上下文之间的关系 使用.NET建立的可执行程序 *.exe,并没有直接承载到进程当中,而是承载到应用程序域(AppDomain)当中。应用程序域是.NET引入的一个新概念,它比进程所占用的资源要少,可以被看作是一个轻量级的进程。在一个进程中可以包含多个应用程序域,一个应用程序域可以 ...
分类:系统相关   时间:2018-08-07 17:29:00    阅读次数:246
(转)C# Assembly.Load 使用
在C#中,我们要使用反射,首先要搞清楚以下命名空间中几个类的关系: 在C#中,我们要使用反射,首先要搞清楚以下命名空间中几个类的关系: System.Reflection命名空间(1) AppDomain:应用程序域,可以将其理解为一组程序集的逻辑容器(2) Assembly:程序集类(3) Mod ...
分类:Windows程序   时间:2018-08-02 19:18:23    阅读次数:430
关于C#获取根目录的概述
以下为其他博友所总结,红色字体为个人理解标注 1、取得控制台应用程序的根目录方法 方法1、Environment.CurrentDirectory 取得或设置当前工作目录的完整限定路径 方法2、AppDomain.CurrentDomain.BaseDirectory 获取基目录,它由程序集冲突解决 ...
分类:Windows程序   时间:2018-07-25 19:00:40    阅读次数:213
.Net 操作Excel表格
一、.从NuGet中,引用 Microsoft.Office.Interop.Excel类库。 方法一、先打开一个execl表然后进行保存 var filepath = AppDomain.CurrentDomain.BaseDirectory + "test123.xlsx"; xSheet.Sa ...
分类:Web程序   时间:2018-07-19 17:23:12    阅读次数:197
【CLR】解析AppDomain
目录结构: // <![CDATA[ function shocon(){ document.getElementById("modol").style.display="block"; } function clocon(){ document.getElementById("modol").st ...
分类:移动开发   时间:2018-07-07 10:35:18    阅读次数:212
MEF and AppDomain z
MEF and AppDomain - Remove Assemblies On The Fly This article will give an idea of what's involved in interacting with a running MEF based application ...
分类:移动开发   时间:2018-07-03 22:37:23    阅读次数:221
C#中获取各种路径获取方法
// 获取程序的基目录。System.AppDomain.CurrentDomain.BaseDirectory// 获取模块的完整路径,包含文件名System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName// 获取和设置当前 ...
分类:Windows程序   时间:2018-06-26 15:05:28    阅读次数:207
后台线程读取指定的web.config
//读取配置文件,订单地址修改接口地址 ExeConfigurationFileMap configMap = new ExeConfigurationFileMap(); configMap.ExeConfigFilename = System.AppDomain.CurrentDomain.Ba... ...
分类:编程语言   时间:2018-06-19 11:51:43    阅读次数:113
C#获取Web和非Web程序的目录
几种方法如下:非Web程序1.AppDomain.CurrentDomain.BaseDirectory2.Environment.CurrentDirectory3.HttpRuntime.BinDirectoryThe path to the current application's/bin ...
分类:Windows程序   时间:2018-06-09 18:01:38    阅读次数:292
在相应目录下新建或读取xml文件
string path = AppDomain.CurrentDomain.BaseDirectory+"UserContent1.xml"; //判断相应路径下文件是否存在 不存在的情况下就新建 if (!File.Exists(path)) { File.Create(path); ... ...
分类:其他好文   时间:2018-06-09 16:42:11    阅读次数:118
269条   上一页 1 ... 4 5 6 7 8 ... 27 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!