- 博客(17)
- 收藏
- 关注
转载 Git掌握这些命令就够啦
//git init 初始化//git status 获取状态//git add//git commit-m "描述"//git branch 分支//git branch a 添加分支//git checkout a 切换分支//mkdir: XX (创建一个空目录 XX指目录名)//pwd: 显示当前目录的...
2019-06-13 17:06:00
142
转载 C# 和校验
1 /// <summary> 2 /// 获取校验和 3 /// </summary> 4 /// <param name="Command"></param> 5 /// <returns></returns> 6 ...
2019-06-11 15:29:00
1794
转载 nuget package and dll 技巧
VS nuget 修改全局包的路径<?xml version="1.0" encoding="utf-8"?><configuration> <packageSources> <add key="nuget.org" value="https://api.nuget.org/v3/index.json" protoc...
2019-04-14 20:37:00
218
转载 (转载)经纬度与西安80,北京54的坐标系转换(C# 实现)
http://blog.sina.com.cn/s/blog //由高斯投影坐标反算成经纬度 public static double[] GaussToBL(double X, double Y)//, double *longitude, double *latitude) { int ProjNo; int Zo...
2019-04-13 11:31:00
620
转载 C# 负数和十六进制转换
C# 负数和十六进制转换 1 /// <summary> 2 /// 十六进制转为负数 3 /// </summary> 4 /// <param name="strNumber"></param> 5 /// <ret...
2018-12-06 21:34:00
1009
转载 HTTPHelper
public class HTTPHelper { public static HttpClient Client { get; } = new HttpClient(); public static string GetHTMLByURL(string url) { try ...
2018-08-04 08:16:00
120
转载 C# 捕获全局亲测可用
using System;using System.Collections.Generic;using System.IO;using System.Linq;using System.Text;using System.Threading;using System.Threading.Tasks;using System.Windows.Forms;...
2018-08-01 15:07:00
132
转载 C# Excel的读写
using System;using System.Collections.Generic;using System.Data;using System.Data.OleDb;using System.Diagnostics;using System.IO;using System.Linq;using System.Runtime.InteropSe...
2018-07-31 17:00:00
100
转载 C# combox 绑定数据
DataTable GetDataTable() { DataTable dt = new DataTable(); dt.Columns.Add("ID", typeof(int)); dt.Columns.Add("Name", typeof(string)); for (int ...
2018-05-03 22:12:00
388
转载 TabPage动态添加From
TabPage动态添加FrompublicTabPageAdd(intcount)tabControl1.TabPages.Clear();for(inti=1;i<=count;i++){TabPagetabPage=new...
2017-12-24 15:26:00
272
转载 C# 延时不卡界面
publicvoidDelay(intmilliSecond){intstart=Environment.TickCount;while(Math.Abs(Environment.TickCount-start)<milliSecond){...
2017-11-17 15:36:00
782
转载 C++ 转C#
//结构体typedefstructtagNET_EHOME_XML_REMOTE_CTRL_PARAM{DWORDdwSize;void*lpInbuffer;//控制参数缓冲区DWORDdwInBufferSize;//控制参数缓冲区长度DWORDdwSendTimeOut;...
2017-11-11 11:00:00
272
转载 CYQ数据库配置
<?xmlversion="1.0"encoding="utf-8"?><configuration><startupuseLegacyV2RuntimeActivationPolicy="true"><!--sqlit--><supportedRuntimeversion="v4.0"...
2017-11-08 23:47:00
160
转载 VB Modbus RTU CRC 校验
PublicFunctionChr_crc(data()AsByte)AsString'*RTU方式的CRC校验计算DimCrcJAsLongDimiAsIntegerDimjAsIntegerCrcJ=65535...
2017-11-08 23:31:00
1059
转载 开始写博客了
11月2 号!转载于:https://www.cnblogs.com/jianhongtang2016/p/7771919.html
2017-11-02 13:54:00
105
转载 简单工厂模式
usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;usingSystem.Threading.Tasks;namespace简单工厂模式{publicclassOperationFactory{publ...
2017-07-09 22:12:00
80
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人