摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u... 阅读全文
posted @ 2014-05-26 22:35 编程猴子 阅读(133) 评论(0) 推荐(0) 编辑
摘要: class Program { static void Main(string[] args) { Test(0); Console.ReadKey(); } static void... 阅读全文
posted @ 2014-05-26 22:32 编程猴子 阅读(113) 评论(0) 推荐(0) 编辑
摘要: class Program { static void Main(string[] args) { //需要将对象的状态保存起来 持久化 //序列化: 将对象的状态持久化到某1中设备上(磁盘.) ... 阅读全文
posted @ 2014-05-26 22:31 编程猴子 阅读(142) 评论(0) 推荐(0) 编辑
摘要: #region 文件操作 /// /// 文件操作 /// /// /// private void button3_Click(object sender, EventArgs e) { ... 阅读全文
posted @ 2014-05-26 22:29 编程猴子 阅读(150) 评论(0) 推荐(0) 编辑
摘要: #region 目录操作 /// /// 目录操作 /// /// /// private void button2_Click(object sender, EventArgs e) { ... 阅读全文
posted @ 2014-05-26 22:28 编程猴子 阅读(162) 评论(0) 推荐(0) 编辑
摘要: #region 路径操作 /// /// 路径操作 /// /// /// private void button1_Click(object sender, EventArgs e) { ... 阅读全文
posted @ 2014-05-26 22:27 编程猴子 阅读(273) 评论(0) 推荐(0) 编辑
摘要: class Person { public string Name { get; set; } //1. 私有化构造函数 //2. 提供1个私有的静态的Person类型的变量 //3. 提供1个公共的静态的方法 用于返回上面的变量. private static Person p; pu... 阅读全文
posted @ 2014-05-26 22:26 编程猴子 阅读(209) 评论(0) 推荐(0) 编辑
摘要: public class BubbleSortLib { public int[] Sort(int[] arr) { for (int outer = arr.Length - 1; outer... 阅读全文
posted @ 2014-05-26 17:36 编程猴子 阅读(177) 评论(0) 推荐(0) 编辑