摘要:
下载地址:https://dev.mysql.com/downloads/ 1. MySQL Community Server 社区版本,开源免费,但不提供官方技术支持。2. MySQL Enterprise Edition 企业版本,需付费,可以试用30天。3. MySQL Cluster 集群版 阅读全文
摘要:
using (var serverManager = new ServerManager()) { foreach(var site in serverManager.Sites) { Console.WriteLine(site.Id); Console.WriteLine(site.Name); 阅读全文
摘要:
public List<T> GetRandomList<T>(List<T> inputList){ //Copy to a array T[] copyArray = new T[inputList.Count]; inputList.CopyTo(copyArray); //Add range 阅读全文