摘要: staticvoid Main(string[] args) { string s =""; //(1)字符访问(下标访问s[i]) s ="ABCD"; Console.WriteLine(s[0]); // 输出"A"; Console.WriteLine(s.Length... 阅读全文
posted @ 2017-04-25 09:57 怪先生 阅读(150) 评论(0) 推荐(0) 编辑
摘要: var content = new StreamReader(@"D:\json.txt", Encoding.Default).ReadToEnd(); 阅读全文
posted @ 2017-04-25 09:55 怪先生 阅读(193) 评论(0) 推荐(0) 编辑
摘要: using Newtonsoft.Json.Converters; using Newtonsoft.Json; IsoDateTimeConverter timeFormat = new IsoDateTimeConverter(); timeFormat.DateTimeFormat = "yyyy-MM-dd HH:mm:ss"; JsonConvert.SerializeObje... 阅读全文
posted @ 2017-04-25 09:53 怪先生 阅读(188) 评论(0) 推荐(0) 编辑
摘要: System.Diagnostics.Stopwatch stopwatch = new Stopwatch(); stopwatch.Start(); //执行代码+++ var d = stopwatch.Elapsed.Seconds; stopwatch.Stop(); 阅读全文
posted @ 2017-04-25 09:52 怪先生 阅读(170) 评论(0) 推荐(0) 编辑
摘要: private static char[] constant = { '0','1','2','3','4','5','6','7','8','9', 'A','B','C','D','E','F','G','H','I','J','K','L', 阅读全文
posted @ 2017-04-25 09:50 怪先生 阅读(1821) 评论(0) 推荐(0) 编辑