09 2013 档案

摘要:Win7系统 下载 DroidSansFallback.ttf字体(android设备上自带了) 源代码第一行增加#-*- coding:utf-8 -*- 创建widget值定font_name s 阅读全文
posted @ 2013-09-17 17:26 TryHard 阅读(1776) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2013-09-09 10:29 TryHard 阅读(324) 评论(0) 推荐(0)
摘要:AppDomain是CLR的运行单元,它可以加载Assembly、创建对象以及执行程序AppDomain是CLR实现代码隔离的基本机制。 每一个AppDomain可以单独运行、停止;每个AppDomain有自己默认的异常处理; 一个AppDomain的运行失败不会影响到其他的AppDomain。 CLR在被CLR Host(windows shell or InternetExp... 阅读全文
posted @ 2013-09-07 17:25 TryHard 阅读(1672) 评论(0) 推荐(2)
摘要:输出类属性 using System;using System.Reflection;namespace Attribute02{ //用于Class和Struct类型 [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct)] class Creat... 阅读全文
posted @ 2013-09-06 17:31 TryHard 阅读(224) 评论(0) 推荐(0)
摘要:输出类属性 using System;using System.Reflection;namespace Attribute02{ //用于Class和Struct类型 [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct)] class Creat... 阅读全文
posted @ 2013-09-06 17:29 TryHard 阅读(283) 评论(0) 推荐(0)
摘要:using System;using System.Reflection;using System.Text;namespace Attribute01{ class Program { static void Main(string[] args) { Type type ... 阅读全文
posted @ 2013-09-06 16:31 TryHard 阅读(357) 评论(0) 推荐(0)