Wind-Eagle

No pain,no gain!
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2008年12月8日

摘要: AST,DLR,Expression Tree-----------推荐一位牛人RednaxelaFX的博客 阅读全文

posted @ 2008-12-08 23:19 Andrew Yin 阅读(3108) 评论(29) 推荐(1)

摘要: http://tirania.org/blog/(Mono创始者的blog)上的一个POST上说Moon现在有一个交互式的C# Shell,允许像执行Javascript eval那样执行C# 例子: csharp> 1; 1 csharp> "Hello, World".IndexOf (","); 5 csharp... 阅读全文

posted @ 2008-12-08 14:08 Andrew Yin 阅读(433) 评论(0) 推荐(0)

2008年12月5日

摘要: Route解析中用到的实体类 阅读全文

posted @ 2008-12-05 18:00 Andrew Yin 阅读(1370) 评论(1) 推荐(0)

摘要: System.Web.Routing 中的RouteCollection类解析 阅读全文

posted @ 2008-12-05 15:46 Andrew Yin 阅读(1868) 评论(1) 推荐(0)

摘要: System.Web.Routing 中的Route类解析 阅读全文

posted @ 2008-12-05 14:39 Andrew Yin 阅读(1506) 评论(1) 推荐(0)

摘要: System.Web.Routing 中的RouteBase类,RouteData类,RouteValueDictionary类解析 阅读全文

posted @ 2008-12-05 14:14 Andrew Yin 阅读(2422) 评论(0) 推荐(1)

摘要: 先来个图预览一下: 1.首先是System.Web.Routing下的RequestContext类,代码相当简单,把HttpContextBase和RouteData放在一起就OK了。 Code Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->us... 阅读全文

posted @ 2008-12-05 12:11 Andrew Yin 阅读(3204) 评论(1) 推荐(1)

2008年12月4日

摘要: 几个有用的扩展方法: Code Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> public static bool IsNullOrTrimEmpty(this string value) { ... 阅读全文

posted @ 2008-12-04 18:35 Andrew Yin 阅读(252) 评论(0) 推荐(0)

摘要: 反射加异步,根据枚举值来异步执行方法: Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> protected delegate void AsyncWriteLogMsgEvent(string message); p... 阅读全文

posted @ 2008-12-04 18:19 Andrew Yin 阅读(365) 评论(0) 推荐(0)

摘要: 操作Enum的一些实用方法: Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> public static T GetEnumItem(string name) { Type type = ty... 阅读全文

posted @ 2008-12-04 18:12 Andrew Yin 阅读(291) 评论(0) 推荐(0)