摘要:
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u... 阅读全文
摘要:
class Program { static void Main(string[] args) { Test(0); Console.ReadKey(); } static void... 阅读全文
摘要:
class Program { static void Main(string[] args) { //需要将对象的状态保存起来 持久化 //序列化: 将对象的状态持久化到某1中设备上(磁盘.) ... 阅读全文
摘要:
#region 文件操作 /// /// 文件操作 /// /// /// private void button3_Click(object sender, EventArgs e) { ... 阅读全文
摘要:
#region 目录操作 /// /// 目录操作 /// /// /// private void button2_Click(object sender, EventArgs e) { ... 阅读全文
摘要:
#region 路径操作 /// /// 路径操作 /// /// /// private void button1_Click(object sender, EventArgs e) { ... 阅读全文
摘要:
class Person { public string Name { get; set; } //1. 私有化构造函数 //2. 提供1个私有的静态的Person类型的变量 //3. 提供1个公共的静态的方法 用于返回上面的变量. private static Person p; pu... 阅读全文
摘要:
public class BubbleSortLib { public int[] Sort(int[] arr) { for (int outer = arr.Length - 1; outer... 阅读全文