码迷,mamicode.com
首页 >  
搜索关键字:runtime attribute    ( 9881个结果
C# 安装字体
using System.Windows.Forms;using System.Runtime.InteropServices;using System.IO;[DllImport("kernel32.dll", SetLastError = true)]static extern int Writ...
分类:其他好文   时间:2014-07-02 22:46:27    阅读次数:334
制作IOS ANE的基本流程
来源:http://www.swfdiy.com/?p=12391. 使用xcode新建ios上的static library 工程2. 从air sdk/include里拷贝flashruntimeExtension.h 进工程目录并引用之3. 使用c, 结合flash runtime exten...
分类:移动开发   时间:2014-07-02 21:21:37    阅读次数:272
MyException
自定义Exceptionusing System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Runtime.Serialization;namespace Model{ /...
分类:其他好文   时间:2014-07-02 21:11:13    阅读次数:304
文件加密及解密
原文:文件加密及解密 1 using System; 2 using System.Collections.Generic; 3 using System.Text; 4 using System.IO; 5 using System.Runtime.Serialization; 6 using S...
分类:其他好文   时间:2014-07-02 20:28:03    阅读次数:163
C#播放MP3源代码
代码如下: 1 using System; 2 using System.Runtime.InteropServices; 3 using System.Text; 4 using System.IO ; 5 using System.Windows.Forms; 6 namesp...
分类:其他好文   时间:2014-07-02 20:23:24    阅读次数:241
windows server 2008 x64 上asp.net 调用 word, excel 出错的解决方式
异常信息:System.Runtime.InteropServices.COMExceptionmessage:内存不足,请现在保存文档网上的一种方法是但是,在64位机器上安装32位的office,在DCOM 配置里是找不到 word,excel的选项的。下面用这个方法解决:This solutio...
分类:Windows程序   时间:2014-07-02 19:24:31    阅读次数:319
objc/runtime.h 相关
Objecitve-C的重要特性是Runtime(运行时),在Interacting with the Runtime(交互运行)中,运行时函数部分,苹果给出了/usr/lib/libobjc.A.dylib库,这个共享库提供支持动态属性的objective - c语言,通过其接口,可以用于开发将其...
分类:其他好文   时间:2014-07-02 18:30:02    阅读次数:272
.Net和C#的理解
.Net是一个微软出品的开发平台,不仅仅是适用于Windows操作系统,还适用于mono,Linux等等,.Net库包括两部分:部分库定义了一些基本类型。CTS(common Type System)通用类型系统,CLR(common language Runtime)通用语言运行库。CLR负责管理...
分类:Web程序   时间:2014-07-02 14:02:21    阅读次数:205
IsKindOf()函数
主要检查一下对象否从某一类类派生,但此类必须从CObject派生(或间接),并且使用DECLARE_DYNAMIC/DECLARE_SEARIAL等宏 比如我们函数的参数是个基类的指针类型。那么当我外部传过来一个子类的指针时,在函数内部就可以用这种语句来确认传进来的是这个子类的对象,而不是其它子类的对象 ASSERT(xxx->IsKinfOf(RUNTIME_...
分类:其他好文   时间:2014-07-02 11:22:46    阅读次数:191
类Process和KMP算法
1 类Process和ProcessBuilder的比较Process是一个抽象类,一般通过Runtime.exec()或ProcessBuilder.start()间接创建其实例 ;ProcessBuilder是一个最终类,可以通过构造方法来直接创建ProcessBuilder的对象。Proces...
分类:其他好文   时间:2014-07-02 10:30:15    阅读次数:215
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!