码迷,mamicode.com
首页 >  
搜索关键字:assembly    ( 1354个结果
[原]__ASSEMBLY__的用途
在Linux Kernel中有些constant需要被C code 跟 assembler共同使用在用constant的時候,不能單方面給0x1000UL因為assembler無法看這東西。但是C compiler卻可以。所以使用這個gcc feature.讓C compiler看到的constan...
分类:其他好文   时间:2014-07-12 14:07:30    阅读次数:166
How to make your assembly more secure from referencing by unauthorized bits
Now the security has a trend to become more and more important in our daily work, hence I did some researches on some of the topics, and hope to do mo...
分类:其他好文   时间:2014-07-11 19:20:52    阅读次数:283
代替Reflection(反射)的一些方法
Reflection(反射)是深入学习.Net必须掌握的技能之一。最初学Reflection的时候,的确是被惊住了,原来还可以这样。只要给你一个Assembly, 你就能获取到其中所有的类型,根据类型,你能够创建和操作对象的属性和方法,甚至是私有的。但是,每次使用Reflection,看着那些丑陋难...
分类:其他好文   时间:2014-07-08 11:41:18    阅读次数:280
批量修改SharePoint2013 备用语言
cls [System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SharePoint") foreach ($webApplication in Get-SPWebApplication) { Write-Host Write-Hos...
分类:其他好文   时间:2014-07-07 12:54:49    阅读次数:276
C# - 设置DLL的属性Embed Interop Type 设为False
错误:Error msg: A reference was created to embedded interop assembly. because of an indirect reference to that assembly created by assembly. Consider ch...
分类:其他好文   时间:2014-07-05 21:05:45    阅读次数:1107
关于C#资源文件操作的总结
//在这里,我来总结一下关于资源文件的相关操作。//1.比较常见的有获取资源文件对应的文件流,然后转换到相对应的文件//比较典型的做法是通过代码程序集加载指定资源//如下通过Assembly的静态方法GetExecutingAssembly()得到程序集//还有很多方式可以得到代码程序集C#代码 ....
分类:其他好文   时间:2014-07-05 18:48:48    阅读次数:150
使用.NET REACTOR制作软件许可证
原文:使用.NET REACTOR制作软件许可证软件下载地址:http://www.eziriz.com/downloads.htm 做一个简单的许可证系统,下面是具体步骤:1, OPEN ASSEMBLY打开项目可执行文件(debug文件夹里面exe文件)。2, 选择SETTINGS选项卡,将RU...
分类:Web程序   时间:2014-07-03 10:59:14    阅读次数:267
修改sharepoint 2013站点里区域设置
cls [System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SharePoint") foreach ($webApplication in Get-SPWebApplication) { Write-Host Write-Hos...
分类:其他好文   时间:2014-07-02 23:12:01    阅读次数:232
silverlight visifire控件图表制作——silverlight 静态页面xaml
一、silverlight 静态页面1、时间控件:DatePicker ,添加引用: xmlns:sdk="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls",触发事件:SelectedDateChanged...
分类:Web程序   时间:2014-07-02 19:28:42    阅读次数:196
将内容重定向到剪切板(clip.exe)
Add-Type -Assembly PresentationCore[Windows.Clipboard]::SetText("abc中文def")先用 $output | Out-String 整成一个多行字符串$output = "String 整成一个多行字符串"$OutputEncodin...
分类:其他好文   时间:2014-07-01 16:42:41    阅读次数:203
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!