态度决定高度、企图决定版图、格局决定结局

导航

上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 16 下一页

2007年5月31日 #

第一个Windows Service

摘要: Windows Service有着其特有的特性,在很多运用中可以发挥作用。比如长时间的,要求轮询的等。 Windows services enable you to perform tasks that execute as different background processes. You can use Windows services to perform tasks, such as ... 阅读全文

posted @ 2007-05-31 17:23 flyingchen 阅读(1454) 评论(3) 推荐(0) 编辑

2007年4月7日 #

VSTS全国首站之苏州.Net俱乐部第2次活动

摘要: 今天天气很好,万里只有云朵朵:)微软VSTS全国首站的讲座就在这样的日子里,在苏州开始了。陈希章先生早早赶到了会场。初见陈老师,大家风范,胸前的Microsoft字样特别醒目。(那天咱也可以有这样一件) 活动开始报名的人数并不是特别的理想:(。但发现到活动现场的朋友还是挺多的,非常高兴,也非常感谢! 由于活动时间的限制,俱乐部Laser.net兄弟的讲座并未能够进行,... 阅读全文

posted @ 2007-04-07 21:11 flyingchen 阅读(424) 评论(7) 推荐(0) 编辑

2007年3月26日 #

苏州.Net俱乐部第二次活动

摘要: 亲爱的苏州俱乐部会员及软件开发爱好者: 2005年12月2日,随着微软正式在中国发布了Visual Studio 2005产品系列,越来越多的企业客户以及独立软件开发商开始使用Visual Studio 2005构建其企业应用程序。作为微软旗舰级平台工具,Visual Studio Team System提供了对软件开发全生命周期的支持与管理,整合了微软三十多年的软件开发经验... 阅读全文

posted @ 2007-03-26 22:50 flyingchen 阅读(2354) 评论(7) 推荐(0) 编辑

2007年3月10日 #

一些JS

摘要: // JavaScript Documentfunction addLoadEvent(func) { var oldonload = window.onload; if (typeof window.onload != 'function') { window.onload = func; } else { window.onload = function() { o... 阅读全文

posted @ 2007-03-10 20:48 flyingchen 阅读(394) 评论(4) 推荐(0) 编辑

动态sql

摘要: 转:http://blogcup.com/a/dhvliyike/archives/2006/369329.shtml 1:普通SQL语句可以用Exec执行eg: Select * from tableName Exec('select * from tableName') sp_executesql N'select * from tableName' -- 请注... 阅读全文

posted @ 2007-03-10 14:54 flyingchen 阅读(410) 评论(1) 推荐(0) 编辑

2007年3月9日 #

利用委托实现观察者模式

摘要: 1using System; 2using System.Collections; 3using System.Collections.Generic; 4 5public class MyClass 6{ 7 public static void Main() 8 { 9 Mouse m = new Mouse(); 10 People... 阅读全文

posted @ 2007-03-09 17:03 flyingchen 阅读(399) 评论(2) 推荐(0) 编辑

2007年2月14日 #

Happy New Year !

摘要: Happy New Year To All My Friends ! 感谢一年以来关心和支持苏州.Net俱乐部发展的各位兄弟 ! 祝福大家在新一年里工作顺利!身体健康!多挣Money ! 同时也祝福我们的俱乐部在07年发展更上一层楼 ! 阅读全文

posted @ 2007-02-14 18:12 flyingchen 阅读(166) 评论(0) 推荐(0) 编辑

2007年2月5日 #

Refactoring to Command

摘要: 1. using System;using System.Collections.Generic;using System.Text; namespace Refactor2Command{public class Mail{private string sender; public string Sender{get { return sender; }set { sender = va... 阅读全文

posted @ 2007-02-05 22:35 flyingchen 阅读(370) 评论(0) 推荐(0) 编辑

2007年1月28日 #

Refactoring to Composed Method

摘要: 组合方法,一个简单的重构实现。通俗的理解就是压缩你的方法体,用一个个小方法来封装(代码层次的封装!封装无所不在阿!)。记得老大(Edward)在关于软件复杂度测量之圈复杂度测量上就有这样一个重构实现。为啥我们需要这样一个实现呢?我个人体会,应该也是最重要的原因就是“降低理解代码的时间“。如果一个方法有着上百行的实现,这个方法理解起来,将是非常痛苦的,如过在加上些全局变量啥的就更加痛苦了!记不清楚... 阅读全文

posted @ 2007-01-28 19:45 flyingchen 阅读(410) 评论(0) 推荐(0) 编辑

Refactoring to Patterns 学习笔记

摘要: Refactoring to Patterns Refactoring to Composed Method : http://www.cnblogs.com/flyingchen/archive/2007/01/28/632601.htmlRefactoring to remove Singleton : http://www.cnblogs.com/flyingchen/archive/... 阅读全文

posted @ 2007-01-28 19:27 flyingchen 阅读(436) 评论(0) 推荐(0) 编辑

上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 16 下一页