04 2010 档案
设计问题-泛型接口问题
摘要:监控系统改版导致的问题。 原因 数据实体使用泛型接口 由于需要支持配置的方式 问题 如何设计各个接口 由于不能把具体泛型的类型写入到配置文件中,那么怎么实现工厂呢? 怎么才能去掉其中的object,使用强类型呢? wraper 类怎么实现呢。
阅读全文
WPF 学习(1)
摘要: Two element trees exist within a WPF application: the logical tree and the visual tree. logical tree 包含了element in xaml and 代码 textbox , and other :their composition and behavior within the ...
阅读全文
C# 3.0 unleashed (1)
摘要:lambdas is that they have minimal syntax and are transferable to and from expression trees. An expression tree is the data representation of an expression, and the lambda is the executable representat...
阅读全文
wpf 资源帖(转帖)
摘要:1.一些不同点。 很多人问过我这样一个问题:WPF和以前的WinForm有什么区别? 我之前的回答一直是:没什么区别,仅仅是表示层用XAML封了层皮,使得Windows看起来更炫了。 今天(确切的说是昨天),我终于发现了我肤浅。首先我要澄清一下,WPF较之WinForm的先进之处不止一点点。 对于WPF,很多人都以为这是微软的一个小玩具,充其量就是让Vista和Win7的表示层更炫了,然后...
阅读全文
学习记录。(4.6)表达式树,泛型
摘要:1.表达式树 http://www.cnblogs.com/JeffreyZhao/archive/2009/07/29/expression-tree-fast-evaluation.html (1)逻辑即数据,Linq to everything .NET 3.5中新增的表达式树(Expression Tree)特性,第一次在.NET平台中引入了“逻辑即数据”的概念。也就...
阅读全文
看源码
摘要:1.objectListView 非常有用 http://www.codeproject.com/KB/list/ObjectListView.aspx 2.继续log4net
阅读全文
Linq(1)
摘要:延迟执行。 deferred execution The query variable itself only stores the query; it does not execute the query or store the result. 可以使用 query variable 多次执行,很像是委托的实现。 Deferred execution works regardless ...
阅读全文
Rhino Mock(1)
摘要: mock interfaces, delegates and classes, including those with parameterized constructors. set expectations on the called methods by using strongly typed mocks instead of strings. lends itself ea...
阅读全文