码迷,mamicode.com
首页 >  
搜索关键字:assembly    ( 1354个结果
Dotfuscator use for .net4.0 error solve
在混淆的时候报错了,错误描述大致如下:Could not find a compatible version of ildasm to run on assembly C:\xxx.dllThis assembly was originally built with .NET Framework v...
分类:Web程序   时间:2014-08-16 16:24:30    阅读次数:333
Visual Studio Tip: Get Public Key Token for a Strong Named Assembly
The first 3 parts are easy to get. I should know the name, version, and culture for the assembly since I am writing it. The part that can be a little ...
分类:其他好文   时间:2014-08-16 12:23:00    阅读次数:226
Visual Studio 新建项目报错" this template attempted to load component assembly 'NuGet.VisualStudio.Interop, ….".
"Error: this template attempted to load component assembly 'NuGet.VisualStudio.Interop, Version=1.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50...
分类:其他好文   时间:2014-08-15 19:19:39    阅读次数:185
C#.NET开发ActiveX控件
最近刚开发了个activeX控件,下面是我的一些简单总结。1. 先创建一个类库项目,在AssemblyInfo.cs设置 [assembly: ComVisible(true)],意思是使此程序集中的类型对COM组件可见。使用命名空间using System.Runtime.InteropServi...
分类:Web程序   时间:2014-08-13 18:05:16    阅读次数:246
Unity3D 程序打包报错(程序是连接数据库进行处理的)
打包这个Unity3D的程序时出现错误(程序是由XML数据改成连接数据库):ArgumentException: The Assembly System.Configuration is referenced by System.Data. But the dll is not allowed to...
分类:数据库   时间:2014-08-13 18:03:17    阅读次数:443
我是如何自学编程的“3遍读书法”
我大学本科念的是电子工程专业,所以到那个时候为止,我唯一使用过的编程语言就是C/C++、Assembly、以及 Matlab。后来一个偶然的机会我参加了一个“周末创业”的活动,并且开始渐渐对软件开发和计算机科学感兴趣,然后我发誓我要不择手段地进入这个洋溢着无限魅力的领域。但是,我需要学习其他的编.....
分类:其他好文   时间:2014-08-12 18:44:34    阅读次数:246
私有程序集 与 共享程序集
私有程序集 与 共享程序集私有程序集就是不同项目中生成的程序集,仅供本项目使用,或者可以经过配置被某一个其它项目的程序集引用。共享程序集是机器级别的共享程序集,它放置一个叫GAC (Global Assembly Cache)的地方,可以被其它所有的私有程序集所引用。注意,GAC中只能放置.dll文...
分类:其他好文   时间:2014-08-12 00:13:53    阅读次数:263
Could not load file or assembly 'Microsoft.Practices.EnterpriseLibrary.Common, Version=5.0.414.0, ...
使用oracle数据库一个多月依赖这问题一直都得不到解决,最近任务不是很忙了,所以决定把这问题解决掉。写一篇文章做记录。以上错误主要是net程序oracle数据库使用了MicrosoftEnterpriseLibrary5.0类库访问oracle数据库,其具有优秀的访问不通数据库的能力。使用方法不对...
分类:其他好文   时间:2014-08-11 17:35:52    阅读次数:236
The striping and assembly algorithms from the Dremel paper( from github, project parquet-mr )
为了理解Dremel论文中给出的案例,笔者觉得对定义级别和重复级别这两个概念进行注释加强理解是有必要的,具体可以看Dremel那篇论文的图2和图3。 柱状数据的嵌套模式: 论文使用了以下的模型: message Document {      required int64 DocId;              optional group Links {       ...
分类:其他好文   时间:2014-08-11 15:07:02    阅读次数:328
C#获取程序集的版本号和最后编译时间
C#获取程序集的版本号:string ver = System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString();C#中如何将记录项目的最后编译时间:在实际的软件开发工作中,我们通常需要记录某个工程的最后编...
分类:其他好文   时间:2014-08-11 14:58:02    阅读次数:180
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!