2013年10月20日
摘要: 2013.10.20开始学习C#1. 单继承;2. 值类型: 基本:整数(byte,short,int, long), 布尔类型,实数,字符型; 结构体; 枚举类型;3. 引用型数据: 类、代表、接口、数组4. 类 域、属性、方法;5. 代表: 安全的C#"指针“ delegate int MyDelegate();using System;delegate int MyDelegate();class P{ public int Fun1(){return 0;} public static int Fun2(){return 0;}}class Q{ static... 阅读全文
posted @ 2013-10-20 18:30 zReachzer 阅读(179) 评论(0) 推荐(0) 编辑