The Last Day Of Summer

.NET技术 C# ASP.net ActiveReport SICP 代码生成 报表应用 RDLC
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2004年7月15日

摘要: Technotes, HowTo Series C# Coding Style Guide Version 0.3by Mike Krüger icsharpcode.net About the C# Coding Style Guide File Organization Indentation Comments Declarations Statements White Spa... 阅读全文

posted @ 2004-07-15 17:46 Cure 阅读(1047) 评论(0) 推荐(0) 编辑

2004年7月14日

摘要: 敏捷软件开发主要包括哪些方法: AD - Agile Database Techniques AM - Agile Modeling ASD - Adaptive Software Development Crystal FDD - Feature Driven Development DSDM - Dynamic Systems Development Method Lean Software ... 阅读全文

posted @ 2004-07-14 16:06 Cure 阅读(1399) 评论(1) 推荐(0) 编辑

摘要: http://www.agilealliance.org/programs/roadmaps/Roadmap/general/general_index.htm看看这些老头那个最帅,呵呵.偶觉得是Kent Beck 阅读全文

posted @ 2004-07-14 14:51 Cure 阅读(526) 评论(0) 推荐(0) 编辑

2004年7月13日

摘要: Principles behind the Agile Manifesto We follow these principles: Our highest priority is to satisfy the customerthrough early and continuous deliveryof valuable software. Welcome changing requirem... 阅读全文

posted @ 2004-07-13 13:02 Cure 阅读(950) 评论(0) 推荐(0) 编辑

摘要: 1.在winform中使用IE:在工具箱里右击,选添加/删除选项,在弹出的对话框里选Com组件选项卡,找到Microsof Web浏览器组件,确定,在工具箱里选择WebBrowser控件,拖放到窗体上,然后写代码:private void button1_Click(object sender, System.EventArgs e){ string str=""; System.Object n... 阅读全文

posted @ 2004-07-13 09:04 Cure 阅读(660) 评论(0) 推荐(0) 编辑

2004年7月9日

摘要: 在昨天的随笔里:两个硬盘和文件相关的小技巧 中对于取得硬盘的分区列表使用了API,在灵感之源的提醒下,联想到用WMI来实现,现在已经成功了,感谢灵感之源提供的思路以下是示例代码:先要引用System.Management.dll,using System.Management; SelectQuery query = new SelectQuery("SELECT... 阅读全文

posted @ 2004-07-09 14:38 Cure 阅读(1717) 评论(7) 推荐(0) 编辑

2004年7月8日

摘要: 可能的情况有:从一个类继承,从一个或多个接口继承,从一个类和一个或多个接口继承。使用Type类的BaseType属性来取得类从哪个类继承。GetInterfaces方法来取得类都实现了哪些接口。测试代码如下:类库代码: using System;namespace GetInterface{ public class Class1 : Class2,BaseInterface,BaseInte... 阅读全文

posted @ 2004-07-08 19:51 Cure 阅读(1438) 评论(0) 推荐(0) 编辑

摘要: 只展示部分说明性代码取系统的硬盘分区的盘符,用API函数:GetDriveType [DllImport("kernel32.dll", EntryPoint="GetDriveType")]public static extern int GetDriveType (string nDrive); 调用:string [] dirs = Environment.GetLogicalDrives(... 阅读全文

posted @ 2004-07-08 19:32 Cure 阅读(1236) 评论(3) 推荐(0) 编辑

2004年7月7日

摘要: What is the CLS: Common Language Specification ?Brad Abrams提出了一个有趣的说法:CLS是编程语言设计者和类库设计者之间的一个约定The CLS (or Common Language Specification) is a simply a contract between programming language designers a... 阅读全文

posted @ 2004-07-07 19:02 Cure 阅读(10589) 评论(8) 推荐(0) 编辑

2004年7月6日

摘要: Feature Votes Feature Votes Edit&Continue 31 Better constraints for generics 10 Better support for nesting other languages in C# 23 Warnings for certain goto behavior 8 Better control over all ... 阅读全文

posted @ 2004-07-06 20:32 Cure 阅读(734) 评论(0) 推荐(0) 编辑