摘要:
High Performance Reflection ORM LayerBuilding a High Performance ORM Layer using ADO.NET, Reflection and Lambda Expressions.http://www.codeproject.com/KB/library/reflectionorm.aspxDotNetMQ: A Complete Message Queue System for .NETA new and independent Open Source Message Queue system that is entirel 阅读全文
posted @ 2011-09-07 09:54
Jack Tang
阅读(249)评论(0)推荐(0)
摘要:
记录日志的目的主要是用于验证程序是否正确实现,正确执行。对一个方法来说,输入输出要记录到日志中,如下面的示例:public int Add(int a, int b){ Log("Enter Add Method. a="+ a.ToString() + ",b="+ b.ToString()); int result = a + b; Log("Exit Add Method. result="+ result.ToString()); return result;} 阅读全文
posted @ 2011-08-15 15:15
Jack Tang
阅读(120)评论(0)推荐(0)