随笔分类 -  C#

摘要:引用mysql数据库 using MySql.Data.MySqlClient; 有一个mysql.dll文件 下面是实例化连接数据库 MySqlConnection Conn = new MySqlConnection("Database=数据库;server= 数据库地址;User Id=数据库用户名;Password=密码"); string sql = "select * f... 阅读全文
posted @ 2016-03-29 11:16 尘梦 阅读(286) 评论(0) 推荐(0) 编辑
摘要:using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using MySql.Dat... 阅读全文
posted @ 2016-03-29 11:09 尘梦 阅读(385) 评论(0) 推荐(0) 编辑
摘要:using (StreamReader sr = new StreamReader(@"C:\Documents and Settings\Administrator\桌面\1.txt",Encoding.Default)) // { // string a=sr.ReadLine(); // C... 阅读全文
posted @ 2015-11-03 11:07 尘梦 阅读(249) 评论(0) 推荐(0) 编辑
摘要:static void Main(string[] args) { string scoure = @"C:\Documents and Settings\Administrator\桌面\数据库函数.avi"; string target="D:\\1.avi"; move(scoure, tar... 阅读全文
posted @ 2015-11-03 10:39 尘梦 阅读(265) 评论(0) 推荐(0) 编辑
摘要:using (FileStream wir=new FileStream(@"C:\Documents and Settings\Administrator\桌面\1.txt",FileMode.OpenOrCreate,FileAccess.Write)) { string a = " 所得税速... 阅读全文
posted @ 2015-11-03 09:38 尘梦 阅读(791) 评论(0) 推荐(0) 编辑
摘要:static void Main(string[] args) { using (FileStream red = new FileStream(@"C:\Documents and Settings\Administrator\桌面\1.txt",FileMode.OpenOrCreate,Fil... 阅读全文
posted @ 2015-11-03 09:24 尘梦 阅读(160) 评论(0) 推荐(0) 编辑
摘要:Dictionary d = new Dictionary(); int i=0; string s = "Welcome to china"; char[] c = new Char[s.Length]; fo... 阅读全文
posted @ 2015-10-27 11:19 尘梦 阅读(184) 评论(0) 推荐(0) 编辑
摘要:string str = null; Console.WriteLine("请输入一个字符串"); str = Console.ReadLine(); char[] c = new char[str.Length]; ... 阅读全文
posted @ 2015-10-27 10:48 尘梦 阅读(142) 评论(0) 推荐(0) 编辑
摘要:将一个数组中的奇数放到一个集合中,再将偶数放到另一个集合中。 最终将两个集合合并为一个集合,并且奇数显示在左边 偶数显示在右边。 List l = new List(); List l1=new List(); int[] num = {1,2... 阅读全文
posted @ 2015-10-27 10:19 尘梦 阅读(233) 评论(0) 推荐(0) 编辑
摘要:2、从一个记录了学生成绩的文本文档,每个学生成绩是一行,每行是用 | 分割的数据,用 | 分割的域分别是姓名、年龄、成绩、年级,写程序取出各个年级成绩最高学生的成绩、年级放到集合中。提示:(1)使用 string[] lines=System.IO.File.ReadAllLines(@"c:/ro... 阅读全文
posted @ 2015-10-23 15:16 尘梦 阅读(440) 评论(0) 推荐(0) 编辑
摘要:Hashtable h = new Hashtable(); ArrayList l = new ArrayList(); string[] lines = System.IO.File.ReadAllLines(@"C:\Users\尘梦\Deskto... 阅读全文
posted @ 2015-10-23 11:38 尘梦 阅读(164) 评论(0) 推荐(0) 编辑
摘要:List list = new List(10); Random r=new Random(); int num = 0; for (int i = 0; i < 10; i++) { ... 阅读全文
posted @ 2015-10-23 10:21 尘梦 阅读(556) 评论(0) 推荐(0) 编辑
摘要://Console.ReadKey(); ceshi("3.ini", "用户名"); ceshi("3.ini", "IP地址"); ceshi("3.ini", "端口"); // 从ini格式的文件(每... 阅读全文
posted @ 2015-09-22 19:37 尘梦 阅读(134) 评论(0) 推荐(0) 编辑
摘要:string[] lines = System.IO.File.ReadAllLines(@"C:\Users\Administrator\Desktop\2.txt",Encoding.Default); foreach (string i in... 阅读全文
posted @ 2015-09-22 11:32 尘梦 阅读(1909) 评论(0) 推荐(0) 编辑
摘要:string email = Console.ReadLine(); int atIndex = email.IndexOf('@'); string userName = email.Substring(0, atIndex); ... 阅读全文
posted @ 2015-09-22 10:59 尘梦 阅读(165) 评论(0) 推荐(0) 编辑
摘要:运算类 public class yunsuan { public static operation create(string operate) { operation oper = null; switch (operate) { ... 阅读全文
posted @ 2015-09-21 09:02 尘梦 阅读(197) 评论(0) 推荐(0) 编辑
摘要:public class Program { static void Main(string[] args) { Console.WriteLine("请输入语文成绩和数学成绩"); string x = Console... 阅读全文
posted @ 2015-09-15 09:25 尘梦 阅读(163) 评论(0) 推荐(0) 编辑
摘要:class Program { static void Main(string[] args) { ceshi wo; Student av = new Student(); wo=new ceshi(a... 阅读全文
posted @ 2015-09-10 09:33 尘梦 阅读(173) 评论(0) 推荐(0) 编辑
摘要:public delegate int ceshi(int a, int b); static int ax(int a, int b) { return a * b; } static int bx(int a, int b) { ... 阅读全文
posted @ 2015-09-08 11:26 尘梦 阅读(158) 评论(0) 推荐(0) 编辑
摘要:static void Main(string[] args) { int[] a = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,0,11}; int max; int min; ... 阅读全文
posted @ 2015-09-07 22:12 尘梦 阅读(644) 评论(0) 推荐(0) 编辑