public class Route<T> { /// <summary> /// 终点相对于起点的维度 /// </summary> public int Dimension { get; } /// <summary> /// 完整路线 /// </summary> public string ...
自定义打包日志输出,过滤不想看到的无关日志。 原理 [visual studio 2013 - How to have MSBuild quiet output but with error/warning summary - Stack Overflow] (https://stackoverfl ...
分类:
其他好文 时间:
2020-07-02 20:00:10
阅读次数:
59
工具代码: 1 using System; 2 using System.IO; 3 4 /// <summary> 5 /// 字节数组与文件之间的相互转换的接口 6 /// </summary> 7 public interface IConvertBetweenBytesAndFile 8 { ...
分类:
编程语言 时间:
2020-07-02 19:59:31
阅读次数:
57
/// <summary> /// 格式化文本(防止SQL注入) /// </summary> /// <param name="str"></param> /// <returns></returns> public static string Formatstr(string html) { S ...
分类:
数据库 时间:
2020-07-02 19:49:11
阅读次数:
85
#region 对象转换处理 /// <summary> /// 判断对象是否为Int32类型的数字 /// </summary> /// <param name="Expression"></param> /// <returns></returns> public static bool IsN ...
分类:
其他好文 时间:
2020-07-02 16:36:59
阅读次数:
45
获取全部索引数据 /// <summary>/// 获取所有索引值/// </summary>public static List<dynamic> GetSearchIndexAll(){ var reader = DirectoryReader.Open(FSDirectory.Open(new ...
分类:
Web程序 时间:
2020-07-01 12:37:52
阅读次数:
70
list1 = [1, 2, 3, 4, 4, 4, 4, 4, 4, 5, 5, 5] list2 = [5, 5, 6, 7, 8, 9] set集合 差集--两种情况 print(list(set(list1) - set(list2))) print(list(set(list2) - se ...
分类:
其他好文 时间:
2020-06-29 09:43:32
阅读次数:
61
{ "name": "XXX", "version": "1.0.0", "summary": "XXX Library", "description": "Provide XXX", "homepage": "http://xxx", "license": "xxx", "authors": { ...
分类:
移动开发 时间:
2020-06-28 20:18:30
阅读次数:
69
【Summary】 TaskFlow 是一个为了 openstack 实现的 python 库,使得执行 task 变得简单,一致,易扩展,可靠; 它能以一种声明的方式,将轻量级 task 对象的创建与 flows 结合起来; 它以一个可以声明的方法可以使得其包含的 engines 去运行这些 fl ...
分类:
其他好文 时间:
2020-06-28 15:24:07
阅读次数:
47
List<CoupleBackList> CoupleBackList_at = new List<CoupleBackList>(); var retData = RetDataList.AsEnumerable().Select(t => new { Id = t.Field<Guid>("Id ...
分类:
编程语言 时间:
2020-06-28 12:43:22
阅读次数:
176