实体类 using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace EmpPrj.Entity { public class y_EmployeeEntity { pu ...
分类:
Web程序 时间:
2020-02-22 21:43:00
阅读次数:
97
Titer Source Codes lnk: https://github.com/zhangsaithu/titer 函数: collections.namedtuple()函数:https://www.cnblogs.com/jiangbingyang/p/7455853.html numpy ...
分类:
其他好文 时间:
2020-02-22 19:50:56
阅读次数:
79
C#压缩图片不失真 using System; using System.Collections.Generic; using System.Drawing; using System.Drawing.Imaging; using System.IO; using System.Linq; usin ...
摘要 在做一些算法题时常常会需要对数组、自定义对象、集合进行排序. 在java中对数组排序提供了 方法,对集合排序提供 方法。对自定义对象排序时要自己重写比较器,对象数组则调用Arrays.sort(),对象集合则调用Collections.sort()。两个方法默认都是升序,也可以重写比较器,实现 ...
分类:
其他好文 时间:
2020-02-21 14:27:20
阅读次数:
105
遍历文件夹下的对象,并修改其导入设置: using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEditor; using System.IO; using System.Di ...
分类:
编程语言 时间:
2020-02-19 20:38:32
阅读次数:
225
import os import collections def getALLDir(path): queue = collections.deque()#空的 queue.append(path)#进队 while len(queue) != 0: dirPath = queue.popleft( ...
分类:
其他好文 时间:
2020-02-19 17:27:29
阅读次数:
72
using DotSpatial.Controls; using DotSpatial.Symbology; using GeoAPI.Geometries; using System; using System.Collections.Generic; using System.Drawing; ...
分类:
其他好文 时间:
2020-02-19 13:10:42
阅读次数:
122
业务场景:客户需要根据过滤条件的不同显示不同的列。如下方式可以实现动态的列名。 using System;using System.Collections.Generic;using System.Linq;using System.Text;using Kingdee.BOS.Core.Repor ...
分类:
其他好文 时间:
2020-02-18 20:42:55
阅读次数:
99
业务场景:保存时,检查上游的销售出库单数量,和发货通知单数量是否一致,不一致时提示信息,点是则保存,点否不保存。 using System;using System.Collections.Generic;using System.Linq;using System.Text;using Kingd ...
分类:
其他好文 时间:
2020-02-18 20:42:42
阅读次数:
127
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespace _13_out参数练 ...
分类:
其他好文 时间:
2020-02-17 20:18:50
阅读次数:
78