摘要: private bool getTimeSpan(string timeStr) { string[] dayTime = timeStr.Split('-'); //判断当前时间是否在工作时间段内 string _strWorkingDayAM = dayTime[0];//工作时间上午08:30 ... 阅读全文
posted @ 2019-12-13 17:08 红磨坊后的白桦树 阅读(655) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/CoderAyu/p/9757389.html 阅读全文
posted @ 2019-12-13 09:58 红磨坊后的白桦树 阅读(183) 评论(0) 推荐(0)
摘要: Console.WriteLine("请输入管道并发数:"); if (int.TryParse(Console.ReadLine(), out int max)) { } 阅读全文
posted @ 2019-12-13 09:56 红磨坊后的白桦树 阅读(349) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/CoderAyu/p/11489577.html float只能保证7位有效数字。 double d = 8345933; float f = (float)d;//8345933 double d = 83459338;float f = (floa 阅读全文
posted @ 2019-12-13 09:32 红磨坊后的白桦树 阅读(202) 评论(0) 推荐(0)