技术经验记录
文章平均质量分 74
wfyloo1981
天道酬勤
展开
-
关于for循环的3个参数的新的理解
来源:http://topic.csdn.net/u/20091001/18/41da5177-f8e4-4e8a-b160-4254fd4b19fc.html?49353 public decimal TotalSalaryWithoutRecursion() { decimal s = salary; for (ListEmployee> ec = Employe转载 2009-10-09 10:42:00 · 1530 阅读 · 0 评论 -
C#中关于try...catch...finally的一些技巧
static string[] _arrStr_eTypes = {"index", "nested index" };static void Main(string[] args){ foreach(string str_eType in _arrStr_eTypes) { try { ThrowException(str_eType原创 2009-11-06 11:26:00 · 606 阅读 · 0 评论 -
C# checked、unchecked操作符
来源: http://leonardleonard.javaeye.com/blog/276377 checked和unchecked操作符用于整型算术运算时控制当前环境中的溢出检查。下列运算参与了checked和unchecked检查(操作数均为整数):1) 预定义的++和――一元运算符。2) 预定义的-一元运算符。3) 预定义的+、-、×、/等二元操作符。4)转载 2009-11-06 11:20:00 · 283 阅读 · 0 评论 -
利用C#实现标准的 Dispose模式
原帖来源:http://hi.baidu.com/gufengboy/blog/item/fdbdb245376efb23cefca322.html 本文讲解的是你在建立包含内存以外资源的类型,特别是处置非内存资源的时候,如何编写自己的资源管理代码。 我们已经知道了处置那些占用非受控(unmanaged)资源的对象的重要性,现在应该编写资源管理代码来处置那些包含非内存资源的类型了。转载 2009-11-06 16:24:00 · 307 阅读 · 0 评论