
C#
hwpokay
这个作者很懒,什么都没留下…
展开
-
C# 索引器
.索引器的索引值不受限为整数.索引器允许重载.索引器不是一个变量/**//* * 由 SharpDevelop 创建。 * 用户: huy * 日期: 2010-2-28 * 时间: 0:20 */using System;using System.Threading;public class Test{ private string name; private int age;...2010-03-06 22:23:00 · 152 阅读 · 0 评论 -
C# 委托
/**//* * 由 SharpDevelop 创建。 * 用户: huy * 日期: 2010-3-6 * 时间: 23:30*/using System;using System.Threading;delegate void EatDelegate(string food);class MyDelegate{ static void zsEat(string food) { ...2010-03-06 23:42:00 · 260 阅读 · 0 评论 -
C# 事件
/**//* * 由 SharpDevelop 创建。 * 用户: huy * 日期: 2010-3-13 * 时间: 7:35*/using System;using System.Threading;class Publisher//出版社{ public delegate void Publish();//声明事件所需代理 public event Publish OnPubl...2010-03-13 08:44:00 · 231 阅读 · 0 评论 -
C# helloWorld
/**//* * 由 SharpDevelop 创建。 * 用户: Administrator * 日期: 2010-3-2 * 时间: 12:30 * * 如果你想要更改该模板,那么请使用“工具 | 选项 | 编辑 | 编辑标准标题”。 */ using System; using System.Threading; public class test { public static...2010-03-02 12:40:00 · 151 阅读 · 0 评论