摘要:
this.treeView.Height = (this.treeView.Height / this.treeView.ItemHeight) * this.treeView.ItemHeight + 3; 阅读全文
摘要:
namespace ModbusTcpSlave { /// <summary> /// 日出日落时间类 /// </summary> public static class SunTimes { #region 公共方法 /// <summary> /// 计算日长 /// </summary> 阅读全文
摘要:
方法 1 using System; using System.Collections.Generic; using System.Data; using System.Reflection; namespace BT.Preservation.Models { public static clas 阅读全文
摘要:
方式一:占用文件的加载 Assembly assembly = Assembly.Load(path); 用上面的方法可以动态的加载到dll,但是用这种方法加载到的dll一直到程序运行结束都是占用的dll文件,在此期间不能够对dll文件进行升级,或者修改. 方式二:不占用文件的方式 Assembly 阅读全文
摘要:
var sql = @"update [TABLE] WITH (ROWLOCK) SET 匹配方式 = '{0}' where ID in({1})"; //lissqls 是你要分组的泛型集合 List<UpdateSqlHelper>lissqls=new List<UpdateSqlHelp 阅读全文
摘要:
//用来存储多ID List<int> itemids = new List<int>(); var sql = @"update [Table] WITH (ROWLOCK) SET 匹配方式 = '{0}' where ID in({1})"; //string.Join(",", Array. 阅读全文