12 2019 档案
摘要:```csharp /// /// 清除文本中Html的标签 /// /// /// protected string ClearHtml(string Content) { Content = ReplaceHtml("&#[^>]*;", "", Content); Content = ReplaceHtml("]*>", "", Content); Content = ReplaceHtml
阅读全文
摘要:```csharppublic partial class SystemScheduler{ private SystemScheduler() { } public static SystemScheduler CreateInstance() { return new SystemScheduler(); } private ISched...
阅读全文