改变自己
我可以改变世界 改变自己
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text; namespace 委托{ //声明委托 public delegate int AddDeltgate(int x,int y); // 关键字 返回值类型 委托名(当类型) 对于方法中的参数 class Program { //... 阅读全文
posted @ 2009-03-19 16:39 dashan 阅读(189) 评论(0) 推荐(0) 编辑
摘要: 用实例说话 static void Main(string[] args){ string input; while (true) { try { Console.WriteLine("请输入0至9之间的整数或按回车退出"); input = Console.ReadLine(); if (input == "") { break; //按回车退出 } if (Convert.ToByte(inp... 阅读全文
posted @ 2009-03-19 14:43 dashan 阅读(163) 评论(0) 推荐(0) 编辑