摘要:
1. 说明 /* Performs operations on System.String instances that contain file or directory path information. These operations are performed in a cross-pla 阅读全文
摘要:
private Point mypoint; private void panel1_MouseDown(object sender, MouseEventArgs e) { mypoint = new Point(-e.X, -e.Y); } private void panel1_MouseMo 阅读全文
摘要:
{ "eslint.format.enable": true, "editor.codeActionsOnSave": { "source.fixAll.eslint": true }, "[typescript]": { "editor.codeActionsOnSave": { "source. 阅读全文
摘要:
挣值管理法中的PV、EV、AC、SV、CV、SPI、CPI这些英文简写相信把大家都搞得晕头转向的。在挣值管理法中,需要记忆理解的有三个参数:PV、AC、EV。 ``` json PV:计划值,在即定时间点前计划完成活动或WBS组件工作的预算成本。 记忆技巧:PLaned,计划,Value,数值,简写 阅读全文
摘要:
#框架类 Web | 名称 | Vue | 描述 | | : : | :-: | | | Element UI | 2 | 饿了么 | | Element Plus | 3 | 饿了么 | | Ant Design 1 | 2 | 蚂蚁金服 | | Ant Design 2 | 3 | 蚂蚁金服 | 阅读全文
摘要:
1 /// <summary> 2 /// 转换扩展类 3 /// </summary> 4 public static class ConvertExtend 5 { 6 /// <summary> 7 /// 将byte[]转换为16进制字符串 8 /// </summary> 9 /// <p 阅读全文
摘要:
1.十进制转二进制 /// <summary> /// 十进制转二进制 /// </summary> public class Convert10To2 { /// <summary> /// 将十进制的16位整型数转换为16位二进制字符串 /// </summary> /// <param nam 阅读全文
摘要:
/// <summary> /// 求一个16位数数的补码 /// </summary> /// <param name="OriginalCode">传入一个Int16整型</param> /// <returns></returns> public static int ConvertCompl 阅读全文
摘要:
1 public class ExcelOperator 2 { 3 public static List<DataTable> Read(string fileName) 4 { 5 List<DataTable> tables = new List<DataTable>(); 6 if (!Fi 阅读全文
摘要:
一、开发环境 1.Windows 10 企业版 64位 2.Microsoft Visual Studio 2017 企业版 二、项目开始 1.新建控制台程序,项目名称“BinarySuperSocket”,.net框架“4.7.1” 2.安装SuperSocket的包,点击 “工具->NuGet包 阅读全文