摘要:
/// /// 过滤空格、换行、script、style等等标签/// /// html的内容/// 处理后的文本internal static string SHTML(string html){ html = html.Trim(); html = html.Replace(@"/]*?... 阅读全文
posted @ 2015-12-21 22:58
林枫i
阅读(568)
评论(0)
推荐(0)
摘要:
获得当前系统时间: DateTime dt = DateTime.Now;Environment.TickCount可以得到“系统启动到现在”的毫秒值DateTime now = DateTime.Now;Console.WriteLine(now.ToString("yyyy-MM-dd")); ... 阅读全文
posted @ 2015-12-21 22:54
林枫i
阅读(315)
评论(0)
推荐(0)