上一页 1 ··· 33 34 35 36 37 38 39 40 41 ··· 73 下一页
摘要: using System; using System.Media; namespace ConsoleApplication { class Program { static void Main(string[] args) { SoundPlayer s = new SoundPlayer("test.wav"); ... 阅读全文
posted @ 2017-08-27 15:09 Dsp Tian 阅读(2589) 评论(1) 推荐(0) 编辑
摘要: using System; namespace ConsoleApplication { class stu { private string name; private int age; public stu() { name = ""; age = -1; ... 阅读全文
posted @ 2017-08-27 15:09 Dsp Tian 阅读(398) 评论(0) 推荐(0) 编辑
摘要: using System; namespace ConsoleApplication { class Program { static void Print(int a, int b) { Console.Write(a + b); } static void Print(string a... 阅读全文
posted @ 2017-08-27 15:08 Dsp Tian 阅读(392) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; namespace ConsoleApplication { class Program { static void Main(string[] args) { Dictionary a = new Dictionary(); ... 阅读全文
posted @ 2017-08-27 15:07 Dsp Tian 阅读(717) 评论(0) 推荐(0) 编辑
摘要: using System; using System.IO; namespace ConsoleApplication { class Program { static void Main(string[] args) { FileStream file = new FileStream("log.txt", FileMo... 阅读全文
posted @ 2017-08-27 15:07 Dsp Tian 阅读(345) 评论(0) 推荐(0) 编辑
摘要: using System; using System.IO; namespace ConsoleApplication { class Program { static void Main(string[] args) { FileStream file = new FileStream("log.txt", FileMo... 阅读全文
posted @ 2017-08-27 15:07 Dsp Tian 阅读(395) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; namespace ConsoleApplication { class Program { static void Main(string[] args) { LinkedList a = new LinkedList(); ... 阅读全文
posted @ 2017-08-27 15:06 Dsp Tian 阅读(8351) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; namespace ConsoleApplication { class Program { static void Main(string[] args) { List a = new List(); ... 阅读全文
posted @ 2017-08-27 15:05 Dsp Tian 阅读(1933) 评论(0) 推荐(0) 编辑
摘要: using System; namespace ConsoleApplication { struct _st { public string name; public int age; } class Program { static void Print(_st a) { ... 阅读全文
posted @ 2017-08-27 15:04 Dsp Tian 阅读(434) 评论(0) 推荐(0) 编辑
摘要: using System; namespace ConsoleApplication { class Program { static void Main(string[] args) { //int[] a=new int[3]; //一维数组 int[,] a = new int[3,3]... 阅读全文
posted @ 2017-08-27 15:02 Dsp Tian 阅读(383) 评论(0) 推荐(0) 编辑
上一页 1 ··· 33 34 35 36 37 38 39 40 41 ··· 73 下一页