.Net
Icedmilk
学无止境
展开
-
[LINQ] IQueryable接口 vs. Queryable扩展类
Defination public interface IQueryable : IEnumerable public static class Queryable IQueryable原创 2011-08-29 23:08:00 · 214 阅读 · 0 评论 -
[LINQ] IEnumerable接口 与 Enumerable扩展
定义 public interface System.Collections.IEnumerable public interface System.Collections.IEnumerator public static class Enumerable IEnu原创 2011-09-06 22:17:16 · 578 阅读 · 0 评论 -
当语言嫁给类库--.Net
写这篇文章的时候,就在想我是写成“当语言嫁给类库”还是写成“当类库嫁给语言”好呢? 稍微考虑了一下还是”当语言嫁给类库”吧,毕竟语言是更注重于优美的外边,而类库是跟注重要实践的。 第一次接触这种特性,也是在C#和.Net类库之间。这种设计确实给我一种奇怪的感觉,咋原创 2011-08-23 19:55:02 · 141 阅读 · 0 评论 -
运行时编译并执行C#代码
所用到的技术 运行时编译反射 示例代码 public static void Main(string[] args) { string test=@" int MAX_N = 100; int n = 10; int原创 2011-08-27 09:39:52 · 2582 阅读 · 0 评论 -
i ^= (j ^= (i ^= j))的IL代码
IL_0000: nop IL_0001: ldc.i4.1 IL_0002: stloc.0 IL_0003: ldc.i4.5 IL_0004: stloc.1 IL_0005: ldloc.0 IL_0006: ldloc.1 IL原创 2011-08-27 21:19:18 · 1058 阅读 · 0 评论