C# 基础
文章平均质量分 76
izhiniao
IT处男
展开
-
数组的定义形式
一、一维数组的定义 类型名[] 数组名; 类型名[] 数组名 = { 初始值列表 }; 类型名[] 数组名 = new 类型名[ 数组大小 ]; 类型名[] 数组名 = new 类型名[ 数组大小 ] { 初始值列表 }; int[] nullArray; int[] intArray = new int[ 10 ]; double[...转载 2013-11-30 01:39:32 · 833 阅读 · 0 评论 -
一个简单的计算器
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace 一个简单的计算器 { class Program { static void Main(string[] args) { Consol原创 2013-12-30 23:23:44 · 573 阅读 · 0 评论 -
冒泡排序
一觉醒来,没事干,写个冒泡醒醒睡意! using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication1 { class Program { static void Main(string[]原创 2013-12-17 10:26:00 · 532 阅读 · 0 评论 -
自定义事件 极其 事件的继承
// 高手就没必要看了,小弟只是自学 , 如果你不腻赐教,小弟感激不尽! 创建一个事件驱动的程序需要的基本步骤: 1、申明关于事件的委托 2、申明事件 3、编写引发事件的函数 4、创建事件处理程序 5、注册事件处理程序 6、在适当的条件下出发事件 实例 : 主人与看门狗 当晚上主人睡觉时,看原创 2014-03-27 23:31:27 · 797 阅读 · 0 评论 -
集合、比较 和 转换 练习归纳
练习原创 2014-04-07 19:26:47 · 776 阅读 · 0 评论 -
C#泛型编程
文章纯属转载 泛型:通过参数化类型来实现在同一份代码上操作多种数据类型。利用“参数化类型”将类型抽象化,从而实现灵活的复用。 例子代码: class Program { static void Main(string[] args) { int obj = 2; Testint>转载 2014-04-12 02:04:13 · 646 阅读 · 0 评论