03 2020 档案
摘要:c# Signalr MessageSize默认是64K 大小,设为NULL即禁用这个限制 ,自己也可以按需求改为自己需要的大小 1 public class Startup 2 { 3 public void Configuration(IAppBuilder app) 4 { 5 //// 有关
阅读全文
摘要:private void txtScan_KeyPress(object sender, KeyPressEventArgs e) { if (string.IsNullOrEmpty(txtScan.Text)) { startInput = DateTime.Now; } if (e.KeyCh
阅读全文
摘要:1 --查询存储过程代码 2 Ctrl+F1 sp_helptext 3 4 5 --查询倒序100行 6 Ctrl+3 sp_executesql N'DECLARE @tempsql nvarchar(1024); declare @temp NVARCHAR(20);set @tempsql
阅读全文
摘要:USB HDI通信类: 1 internal class HIDDevice 2 { 3 #region constants 4 private const int DIGCF_DEFAULT = 0x1; 5 private const int DIGCF_PRESENT = 0x2; 6 pri
阅读全文