码迷,mamicode.com
首页 >  
搜索关键字:assembly    ( 1354个结果
在C#中如何使用资源的方法
总结一个在C#中如何使用资源的方法:一:使用本地文件1、将本地要加入的资源文本(视频,图片,文本或其它)加入项目,比如我们现在加入一个up.bmp的图片到项目中,且放在文件夹Resources下面,2、将up.bmp的生成操作设置为"嵌入的资源"3、读取资源:Assembly assembly = ...
分类:Windows程序   时间:2014-12-16 23:59:00    阅读次数:394
[单元测试]VS-通过代码添加单元测试提示No classes or namespaces in this assembly
在Visual Studio 2012中,打算给以下方法添加单元测试,但却出现了提示:No classes or namespaces in this assembly的提示。 1 namespace UnitTest 2 { 3 class Program 4 { 5 ...
分类:其他好文   时间:2014-12-15 21:44:34    阅读次数:235
【C#】 反射
【C#】 反射 目录 : http://msdn.microsoft.com/zh-cn/library/System.Reflection(v=vs.110).aspx System.Reflection Assembly -- 可以动态加载卸载程序集,获取程序集信息(即程序集内类的信息)...
分类:Windows程序   时间:2014-12-15 15:06:13    阅读次数:214
反射 基于反射的简单工厂
反射 访问修饰符只是给编译器看的,反射中可以完全操控到无论私有不私有(GAC :Gobal Assemble Cache)全局程序集缓存得到assembly的方法1.0*在当前运行目录下面 加载对应的程序集assembly ass1=assembly.load(“lib”)2.0加载制定目录下面的程...
分类:其他好文   时间:2014-12-09 22:56:48    阅读次数:320
Comparing Strategies 10 and 40
Net Requirements Planning (10) and Planning with Final Assembly (40) are similar in certain areas. The following graphic applies to both strategies:Ho...
分类:其他好文   时间:2014-12-09 19:33:40    阅读次数:155
设计模式之“创建型模式”
创建型模式主要分为五大模式,分别为:抽象工厂模式、建造者模式、工厂方法模式、原型模式、单例模式。 抽象工厂模式     提供一个创建一系列相关或相互依赖对象的接口,而无需指定它们具体的类。 一、优点     1、易于交换产品系列。     2、它让具体的创建实例过程与客户端分离。 二、反射     Assembly.Load("程序集名称").CreateIn...
分类:其他好文   时间:2014-12-08 14:02:13    阅读次数:134
GLSL Core Tutorial – Primitive Assembly
原文:http://www.lighthouse3d.com/tutorials/glsl-core-tutorial/primitive-assembly/ 图元装配阶段把顶点shader处理后的数据作为输入,而这些顶点如何进行组合则是应用程序通过调用OpenGL函数glDraw*来指明的(图中橙...
分类:其他好文   时间:2014-12-07 17:41:34    阅读次数:348
.net framework 4.0 从 GAC 卸载 程序集
.net framework 4.0的 GAC 目录:C:\Windows\Microsoft.NET\assembly\GAC_MSIL要卸载,仍然使用 gacutil 命令,不要带扩展名:gacutil /u mycompany.myproduct.myassembly
分类:Web程序   时间:2014-11-30 18:40:49    阅读次数:195
.net framework 4.0 从 GAC 卸载 程序集
.net framework 4.0的 GAC 目录:C:\Windows\Microsoft.NET\assembly\GAC_MSIL要卸载,仍然使用 gacutil 命令,不要带扩展名:gacutil /u mycompany.myproduct.myassembly
分类:Web程序   时间:2014-11-30 18:33:58    阅读次数:187
T4 assembly
In a T4 template the executing assembly is not yours but one from the T4 engine.To access types from your assemblies, you have to perform the followin...
分类:其他好文   时间:2014-11-27 15:54:23    阅读次数:135
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!