上一页 1 2 3 4 5 6 7 8 ··· 10 下一页

2022年5月9日

SqlServer 修改字段为NULL(非字符串的null)

摘要: UPDATE AOI_MAT_LOT SET DEVICE = NULL WHERE LOT = '3100500130120' 阅读全文

posted @ 2022-05-09 10:13 写个笔记 阅读(583) 评论(0) 推荐(0) 编辑

2022年5月8日

PxCook抓像素和颜色的工具

摘要: 使用方法 https://www.bilibili.com/video/BV1Kg411T7t9?p=91&spm_id_from=pageDriver 阅读全文

posted @ 2022-05-08 23:04 写个笔记 阅读(97) 评论(0) 推荐(0) 编辑

2022年4月15日

C# 当list有多个属性时,取某个属性的值

摘要: 例如想取 same的值: list[1].GetType().GetProperty("same").GetValue(list[1],null).ToString()//也可以循环list for (int i = 0; i < list.Count; i++) { string a = list 阅读全文

posted @ 2022-04-15 17:02 写个笔记 阅读(1386) 评论(0) 推荐(0) 编辑

C# Gridview 居中显示,显示在屏幕中间

摘要: 只需要加上这段代码: style="margin: 0px auto;" 例: <cimesui:cimesgridview id="gvshow" runat="server" autogeneratecolumns="false" style="margin: 0px auto;" allowp 阅读全文

posted @ 2022-04-15 16:58 写个笔记 阅读(389) 评论(0) 推荐(0) 编辑

2022年4月2日

C# list 对象

摘要: //声明 public class DicDeviceOperationList { public string sameDevice { get; set; } public string sameOperation { get; set; } public string strSid { get 阅读全文

posted @ 2022-04-02 16:05 写个笔记 阅读(186) 评论(0) 推荐(0) 编辑

2022年3月10日

html里的二级联动

摘要: https://www.cnblogs.com/yulingjia/p/5767461.html 阅读全文

posted @ 2022-03-10 14:28 写个笔记 阅读(88) 评论(0) 推荐(0) 编辑

2022年3月8日

转换list数据为table 和 转换table为list的两个方法

摘要: /// <summary> /// Convert list to Data Table /// </summary> /// <typeparam name="T">Target Class</typeparam> /// <param name="varlist">list you want t 阅读全文

posted @ 2022-03-08 08:23 写个笔记 阅读(535) 评论(0) 推荐(0) 编辑

2022年1月13日

C# System.DateTime.Now.ToString()使用注意事项

摘要: 获取服务器时间:System.DateTime.Now.ToString(). 在使用时得到的结果可能不是需要的年月日,有可能是“04-03-2014 10:00:00”的格式, 获取结果是根据服务器配置的时间格式定的,如果我们使用这个值作为查询条件的话,有可能查询不到数据 最好在使用的进行类型转化 阅读全文

posted @ 2022-01-13 13:40 写个笔记 阅读(596) 评论(0) 推荐(0) 编辑

2022年1月11日

C# 泛型 Sort(排序)和BinarySearch(查找置顶元素并返回其索引)

摘要: 阅读全文

posted @ 2022-01-11 23:40 写个笔记 阅读(52) 评论(0) 推荐(0) 编辑

c# 泛型 Find的使用

摘要: Find的使用 FindLast FindAll FindIndex 阅读全文

posted @ 2022-01-11 23:38 写个笔记 阅读(184) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 ··· 10 下一页

导航