C#之override学习案例
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace override_test{ class TestOverride { public class Employee { public …… 阅读全文
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace override_test{ class TestOverride { public class Employee { public …… 阅读全文
using System;using System.Collections.Generic;using System.Linq;using System.Text;//接口的声明案例/*namespace Interface_test{ interface Ifunction1 //接口1 { int sum(int i, int j); …… 阅读全文
//读文件/*using System.IO;using System;using System.Windows.Forms; //包含MessageBox();函数public class readFileExample{ public static void Main() { //定义一个一维数组,并初始化数据 byte[] bu …… 阅读全文
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.IO; //文件读写namespace MoveFile_test //文件的移动{ class Program { static vo …… 阅读全文
String.Split 方法有6个重载函数:1) public string[] Split(params char[] separator)2) public string[] Split(char[] separator, int count)3) public string[] Split(char[] separator, StringSplitOptions options) …… 阅读全文
using System;using System.IO;using System.Text;namespace FileRead{ class Program //此程序用于读取类似文件中的矩阵,但元素之间空格长度不等 { static void Main() { string Path = @"F:\test …… 阅读全文
创建C#窗体时会产生一个主窗体(假设为Form1)此窗体被默认为程序的启动窗体,C#Windows程序有一个主程序,此主程序会加载创建的窗体Form1,而Form1窗体的控件设计例如样式、位置和本身的创建都会在Form1.design.cs文件中,而Form1的显示效果会在Form1[设计窗体]文件中,而Form1的所有控件所发生的事件处理代码均在Form1.cs中,其实Form1 …… 阅读全文
using System;namespace test{ class Program { public void CreateList(ref int[] a) //创建顺序表 { int n = a.Length; //获取数组的长度 for (int i = 0; i < n; i++ …… 阅读全文