NET岛

导航

2005年8月21日

测试和调试

摘要: Debug 菜单Windows 打开子菜单,选择查看的调试窗口Break All 程序执行暂停,进入Break模式Detach All 将调试器从正在调试的所有进程中脱离出来。Proceddes ExceptionsQuckWatchClear All Breakpoints 移除所有断点Disable All Breakpoints 禁用所有断点Running Documents 显示当前载... 阅读全文

posted @ 2005-08-21 23:49 左佩玉 阅读(326) 评论(0) 推荐(0) 编辑

继承 System.Collections.CollectionBase 创建一个强类型集合类

摘要: using System;namespace Joe_s_Doughnut_Shop_CSharp{ /**//// /// Summary description for DoughnutCollection. /// public class DoughnutCollection : System.Collections.CollectionBase { ... 阅读全文

posted @ 2005-08-21 23:19 左佩玉 阅读(689) 评论(0) 推荐(0) 编辑

面向对象

摘要: 重载运算符public static type operator op (Argument1[,Argument2]) //op: + - ...{ //...}定义接口public interface IDrivable{ int lenth { get; set; //省略为只读 } int total(); e... 阅读全文

posted @ 2005-08-21 23:05 左佩玉 阅读(329) 评论(0) 推荐(0) 编辑