摘要:
环境是.net Framework 3.5考虑到这样一组代码:Type a = new Type();Type b = new Type();a = a ?? b;和Type a = new Type();Type b = new Type();a = (null == a ? b : a);在正常情况下, 二者的结果是一样的, 可是谁的效率更高呢?设计如下的代码实验:code snippet A... 阅读全文
posted @ 2009-08-03 18:44
.Nat
阅读(168)
评论(0)
推荐(0)