07 2014 档案
Amazon Resource Names (ARNs)
摘要:The following are the general formats for ARNs; the specific components and values used depend on the AWS service.arn:aws:service:region:account:resou... 阅读全文
posted @ 2014-07-29 16:29 chuwachen 阅读(611) 评论(0) 推荐(0)
Enable MFA for a user
摘要:If you are root/admin account, in order to configure a virtual MFA device, you must have physical access to the device.For example, if you are configu... 阅读全文
posted @ 2014-07-29 16:14 chuwachen 阅读(343) 评论(0) 推荐(0)
ios申请真机调试( xcode 5)详细解析
摘要:已经有开发证书的直接跳过第一步第一步:申请“开发证书”进入苹果开发者99美元账号:选择:Certificates, Identifiers & Profiles关于 Certificates,Identifiers,Profiles 的介绍请看”Certificates, Identifiers ,... 阅读全文
posted @ 2014-07-25 20:04 chuwachen 阅读(215) 评论(0) 推荐(0)
iOS Developer:真机测试
摘要:如果出现ios development一项为灰色不可点击状态,苹果的说法是如果您要为此电脑添加证书,请revoke以前的证书后添加,或者通过以前的mac导出证书 原文不记得了,大概这个意思,苹果不希望你的开发者账号里出现多台Mac的证书,如果在其他mac上已经添加过证书的话,就直接通过P12导出(... 阅读全文
posted @ 2014-07-25 19:57 chuwachen 阅读(251) 评论(0) 推荐(0)
Valid signing identity not found解决办法(原有IDP私钥丢失)及Certificate、App ID、Devices、Provisioning Profiles之间区别
摘要:转载自http://blog.csdn.net/mad1989/article/details/8699147 阅读全文
posted @ 2014-07-25 19:54 chuwachen 阅读(154) 评论(0) 推荐(0)
armv6, armv7, armv7s的区别
摘要:ARM是微处理器行业的一家知名企业,arm处理器以体积小和高性能的优势在嵌入式设备中广泛使用,几乎所有手机都是使用它的。armv6, armv7, armv7s是ARM CPU的不同指令集,原则上是向下兼容的。如iPhone4S CPU支持armv7, 但它同时兼容armv6,只是使用armv6指令... 阅读全文
posted @ 2014-07-25 19:14 chuwachen 阅读(527) 评论(0) 推荐(0)
关于Certificate、Provisioning Profile、App ID的介绍及其之间的关系
摘要:1.概念介绍如果你拥有一个开发者账户的话,在iOS Dev Center打开Certificates, Indentifiers & Profiles,你就可以看到如下的列表:Profile Portal改版有一段时间了,改版之后的结构比以前更清晰明了,易于理解和管理。上面的列表就包含了开发、调试和... 阅读全文
posted @ 2014-07-25 19:10 chuwachen 阅读(390) 评论(0) 推荐(0)
传递引用类型参数(ref)
摘要:引用类型的变量不直接包含其数据;它包含的是对其数据的引用。当通过值传递引用类型的参数时,有可能更改引用所指向的数据,如某类成员的值。但是无法更改引用本身的值;也就是说,不能使用相同的引用为新类分配内存并使之在块外保持。若要这样做,应使用ref或out关键字传递参数。通过ref允许调用方法来修改引用参... 阅读全文
posted @ 2014-07-18 17:00 chuwachen 阅读(558) 评论(0) 推荐(0)
CLR内存管理
摘要:CLR管理内存的区域,主要有三块,分别为:1.线程的堆栈:(在程序应该编译过程为值类型实例分配好内存)用于分配值类型实例。堆栈主要由操作系统管理,而不受垃圾收集器的控制,当值类型实例所在方法结束时,其存储单位自动释放。栈的执行效率高,但存储容量有限。对于值类型来说,一般创建在线程的堆栈上。但并非所有... 阅读全文
posted @ 2014-07-18 16:49 chuwachen 阅读(236) 评论(0) 推荐(0)
值类型,引用类型,装箱,拆箱
摘要:值类型包括原类型(Sbyte、Byte、Short、Ushort、Int、Uint、Long、Ulong、Char、Float、Double、Bool、Decimal)、枚举(enum)、结构(struct),引用类型包括:类、数组、接口、委托、字符串等。值型就是在栈中分配内存,在申明的同时就初始化... 阅读全文
posted @ 2014-07-15 15:23 chuwachen 阅读(707) 评论(0) 推荐(0)
static, readonly, const
摘要:staticUse thestaticmodifier to declare a static member, which belongs to the type itself rather than to a specific object.Thestaticmodifier can be use... 阅读全文
posted @ 2014-07-11 12:34 chuwachen 阅读(196) 评论(0) 推荐(0)
Modifiers: virtual, override, new, abstract, sealed, internal
摘要:internal声明类、类成员、接口或接口成员具有内部可见性。internal修饰符使类、接口或成员仅在当前包中可见。当前包之外的代码不能访问internal成员。只有在同一程序集的文件中,内部类型或成员才是可访问的在全局范围内,internal修饰符与public修饰符相同。不能将internal... 阅读全文
posted @ 2014-07-11 11:45 chuwachen 阅读(163) 评论(0) 推荐(0)
Static Constructors
摘要:A static constructor is used to initialize anystaticdata, or to perform a particular action that needs to be performed once only. It is called automat... 阅读全文
posted @ 2014-07-07 18:17 chuwachen 阅读(200) 评论(0) 推荐(0)
.NET深入解析LINQ框架
摘要:http://www.cnblogs.com/wangiqngpei557/archive/2012/11/10/2764201.html 阅读全文
posted @ 2014-07-07 12:40 chuwachen 阅读(112) 评论(0) 推荐(0)