C#交流俱乐部

学习为主,互相帮助

博客园 首页 新随笔 联系 订阅 管理

2010年6月3日 #

摘要: 代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->1usingSystem;2usingSystem.Collections.Generic;3usingSystem.Linq;4usingSystem.Text;5usingSystem.Reflection;67namespaceConsoleTest8{9//接口定义10interfaceIEmploy11{12//继承该接口要实现的方法13voidSpeak(strings);14} 阅读全文
posted @ 2010-06-03 18:53 bluce chen 阅读(496) 评论(1) 推荐(0) 编辑

摘要: 代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--1int[]arrInt32=newint[]{41,88,80,73,57,88,28,56,34};2for(intx=0;x<9;x++)3{45for(inty=0;y<9-1;y... 阅读全文
posted @ 2010-06-03 15:59 bluce chen 阅读(272) 评论(2) 推荐(1) 编辑

摘要: netstat 显示established的连接 netstat –a 显示所有连接(按机器名和已知端口名显示) netstat –an 显示所有连接(按IP和端口号显示) netstat –r 显示路由信息telnet XXX.com 80 get /回车 阅读全文
posted @ 2010-06-03 15:02 bluce chen 阅读(165) 评论(0) 推荐(0) 编辑

摘要: 1.对于没有参数的线程ThreadT= new Thread(new ThreadStart(*));2.对于有参数的线程Thread T= new Thread(new ParameterizedThreadStart(*));--------------------------------msdn上代码:---------------------------------- class work... 阅读全文
posted @ 2010-06-03 14:36 bluce chen 阅读(238) 评论(0) 推荐(0) 编辑

摘要: 原文地址:http://blog.csdn.net/songkexin/archive/2007/01/18/1486289.aspx引言  数据库的设计范式是数据库设计所需要满足的规范,满足这些规范的数据库是简洁的、结构明晰的,同时,不会发生插入 (insert)、删除(delete)和更新(update)操作异常。反之则是乱七八糟,不仅给数据库的编程人员制造麻烦,而且面目可憎,可能存储了 大量... 阅读全文
posted @ 2010-06-03 13:43 bluce chen 阅读(190) 评论(0) 推荐(0) 编辑

摘要: 原文地址:http://www.cnblogs.com/aspnetx/archive/2006/09/22/512294.html 常用表达式: "^\d+$"  //非负整数(正整数 + 0) "^[0-9]*[1-9][0-9]*$"  //正整数 "^((-\d+)|(0+))$"  //非正整数(负整数 + 0) "^-[0-9]*[1-9][0-9]*$"  //负整数 "^-?\d+... 阅读全文
posted @ 2010-06-03 13:41 bluce chen 阅读(150) 评论(0) 推荐(0) 编辑