惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

C
Cisco Blogs
Schneier on Security
Schneier on Security
T
Tor Project blog
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
T
Tenable Blog
C
Cyber Attacks, Cyber Crime and Cyber Security
T
Threat Research - Cisco Blogs
C
CERT Recently Published Vulnerability Notes
Security Latest
Security Latest
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
NISL@THU
NISL@THU
L
Lohrmann on Cybersecurity
Scott Helme
Scott Helme
Webroot Blog
Webroot Blog
Project Zero
Project Zero
Google Online Security Blog
Google Online Security Blog
The Last Watchdog
The Last Watchdog
Spread Privacy
Spread Privacy
Hacker News: Ask HN
Hacker News: Ask HN
PCI Perspectives
PCI Perspectives
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
W
WeLiveSecurity
Attack and Defense Labs
Attack and Defense Labs
D
Darknet – Hacking Tools, Hacker News & Cyber Security
N
News | PayPal Newsroom
Help Net Security
Help Net Security
The Hacker News
The Hacker News
H
Heimdal Security Blog
O
OpenAI News
S
Security @ Cisco Blogs
N
News and Events Feed by Topic
Cyberwarzone
Cyberwarzone
Simon Willison's Weblog
Simon Willison's Weblog
G
GRAHAM CLULEY
www.infosecurity-magazine.com
www.infosecurity-magazine.com
博客园 - 叶小钗
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
Hacker News - Newest:
Hacker News - Newest: "LLM"
T
Tailwind CSS Blog
大猫的无限游戏
大猫的无限游戏
A
Arctic Wolf
I
Intezer
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
S
Security Affairs
P
Proofpoint News Feed
S
Secure Thoughts
腾讯CDC
Google DeepMind News
Google DeepMind News
量子位
罗磊的独立博客

博客园 - 12不懂3

IOC容器 分布式锁 分布式事务 Myql索引篇+c#性能优化篇 jwt验证机制 HttpHelper .net7.0 .net升级7.0报错1. MySqlConnection is already in use. See https://fl.vu/mysql-conn-reuse 2.SqlSugar.SqlSugarException: Cannot Open when State is Connecting. 3.The current TransactScope is already complete Windos Elastocsearch安装部署汉化 Mysql ElasticSearch ABP.VNET 原书籍《Effective C#:改善C#代码的50个有效方法》 精炼18点 ABP IO读写+Epoll多路复用,计算机底层解析 c# 技术点总结 kuberspere管理工具+k8s安装 K8s核心组件理解 数据库事务和锁
C# Common中心目录
12不懂3 · 2022-10-13 · via 博客园 - 12不懂3
代码地址:COmmon中心代码

/// <summary> /// 反射工具 /// </summary> public static class ReflectionUtil { } /// <summary> /// 布尔值<see cref="Boolean"/>类型的扩展辅助操作类 /// </summary> public static class BooleanExtensions { } /// <summary> /// Enumerable集合扩展方法 /// </summary> public static class EnumerableExtensions { } /// <summary> /// 枚举<see cref="Enum"/>的扩展辅助操作方法 /// </summary> public static class EnumExtensions { } /// <summary> /// 基类型<see cref="Object"/>扩展辅助操作类 /// </summary> public static class ObjectExtensions1 { } /// <summary> /// 随机数<see cref="Random"/>类型的扩展辅助操作类 /// </summary> public static class RandomExtensions { } /// <summary> /// Stream扩展方法 /// </summary> public static class StreamExtensions { } /// <summary> /// StringBuilder 扩展方法类 /// </summary> public static class StringBuilderExtensions { } /// <summary> /// 字符串<see cref="string"/>类型的扩展辅助操作类 /// </summary> public static class StringExtensions { } /// <summary> /// 数组扩展方法 /// </summary> public static class ArrayExtensions { } /// <summary> /// 集合扩展方法 /// </summary> public static class CollectionExtensions { } #region help类 /// <summary> /// 比较器辅助类,用于快速创建<see cref="IComparer{T}"/>接口的实例 public static class ComparisonHelper<T> { } /// <summary> /// 相等比较辅助类,用于快速创建<see cref="IEqualityComparer{T}"/>的实例 /// </example> /// <typeparam name="T"> </typeparam> public static class EqualityHelper<T> { } /// <summary> /// Excel导出操作类 /// </summary> public class ExcelExportHelper<T> { } /// <summary> /// Excel导入操作类 需要安装NPOI /// </summary> public class ExcelImportHelper { } /// <summary> /// FileHelper /// </summary> public class FileHelper { } /// <summary> /// JsonHelper /// </summary> public static class JsonHelper { } /// <summary> /// PDF /// </summary> public class PDFHelper { } /// <summary> /// 正则帮助类 /// </summary> public class RegularHelper { } /// <summary> /// 字符串通用操作类 /// </summary> public class StringHelper { } #endregion #region 公用库 /// <summary> /// 获取服务器信息 /// </summary> public static class MachineUtil { } /// <summary> /// 网络操作 /// </summary> public static class NetUtil { } /// <summary> /// 汉字转换拼音 /// </summary> public class PinyinUtil { } /// <summary> /// 树形结构查询 /// </summary> public static class QueryTreeUtil { } /// <summary> /// 树结构帮助类 /// </summary> public static class TreeUtil { } /// <summary> /// 树模型基类 /// </summary> public class TreeModel { }