摘要:
public static string Hex(byte[] data) { var sb = new StringBuilder(); foreach (var t in data) { sb.Append(t.ToString("X2")); } return sb.ToString(); } 阅读全文
摘要:
typora-copy-images-to: static ydal 项目框架介绍 可能是东半球最好netcore ORM框架,目前暂时支持mysql、mssql,其核心设计目标是开发迅速、学习简单、轻量级、易扩展。现已开放源代码,开箱即用。 It may be the best NETCORE O 阅读全文
摘要:
Coding Practice | 编程实践 基础篇 Clean Code《代码整洁之道》Pragmatic Unit Testing《单元测试之道》The Productive Programmer《卓有成效的程序员》Test-Driven Development By Example《测试驱动开 阅读全文
摘要:
MAC 第一步:从微软官网下载:https://www.visualstudio.com/vs/visual-studio-mac/ 第二步:安装软件过程出现 It was not possible to complete an automatic installation. This might 阅读全文