上一页 1 ··· 38 39 40 41 42 43 44 45 46 ··· 79 下一页
摘要: using System; using System.Net; using System.Net.Mail; using System.Text; namespace ConsoleApplication { class Program { static void Main(string[] args) { MailMes... 阅读全文
posted @ 2017-08-27 15:11 Dsp Tian 阅读(512) 评论(0) 推荐(0)
摘要: using System; using System.Net; namespace ConsoleApplication { class Program { static void Main(string[] args) { IPHostEntry ipHost = Dns.GetHostEntry(Dns.GetHost... 阅读全文
posted @ 2017-08-27 15:11 Dsp Tian 阅读(384) 评论(0) 推荐(0)
摘要: using System; using System.Data.OleDb; namespace ConsoleApplication { class Program { static void Main(string[] args) { string strConnection = "Provider = Microso... 阅读全文
posted @ 2017-08-27 15:10 Dsp Tian 阅读(535) 评论(0) 推荐(0)
摘要: using System; using System.Data.SqlClient; namespace ConsoleApplication { class Program { static void Main(string[] args) { SqlConnection con = new SqlConnection(... 阅读全文
posted @ 2017-08-27 15:10 Dsp Tian 阅读(615) 评论(0) 推荐(0)
摘要: using System; namespace ConsoleApplication { class Program { static void Main(string[] args) { string a = "1234"; int b = Convert.ToInt32(a)+1; ... 阅读全文
posted @ 2017-08-27 15:09 Dsp Tian 阅读(401) 评论(0) 推荐(0)
摘要: 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 阅读(2606) 评论(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 阅读(403) 评论(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 阅读(398) 评论(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 阅读(726) 评论(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 阅读(353) 评论(0) 推荐(0)
上一页 1 ··· 38 39 40 41 42 43 44 45 46 ··· 79 下一页