随笔分类 -  C#

摘要:1. 新建任务 点击新建任务按钮 输入任务名称,选择自由风格,点击确定 2. 配置 2.1 常规配置 2.2 源码管理(Source code management) 选择Git,输入代码仓库的URL,选择一个认证,如果认证选项里面没有,可以点击下面的添加按钮进行新增,然后指定分支,源码库浏览器选择 阅读全文
posted @ 2025-08-28 21:32 鸑鷟虽孤 阅读(187) 评论(0) 推荐(0)
摘要:1. 说明 /* Performs operations on System.String instances that contain file or directory path information. These operations are performed in a cross-pla 阅读全文
posted @ 2024-04-18 11:37 鸑鷟虽孤 阅读(355) 评论(2) 推荐(0)
摘要:private Point mypoint; private void panel1_MouseDown(object sender, MouseEventArgs e) { mypoint = new Point(-e.X, -e.Y); } private void panel1_MouseMo 阅读全文
posted @ 2023-08-22 16:09 鸑鷟虽孤 阅读(60) 评论(0) 推荐(0)
摘要:1 /// <summary> 2 /// 转换扩展类 3 /// </summary> 4 public static class ConvertExtend 5 { 6 /// <summary> 7 /// 将byte[]转换为16进制字符串 8 /// </summary> 9 /// <p 阅读全文
posted @ 2019-08-02 11:27 鸑鷟虽孤 阅读(2938) 评论(0) 推荐(0)
摘要:1.十进制转二进制 /// <summary> /// 十进制转二进制 /// </summary> public class Convert10To2 { /// <summary> /// 将十进制的16位整型数转换为16位二进制字符串 /// </summary> /// <param nam 阅读全文
posted @ 2019-06-20 16:29 鸑鷟虽孤 阅读(2811) 评论(1) 推荐(0)
摘要:/// <summary> /// 求一个16位数数的补码 /// </summary> /// <param name="OriginalCode">传入一个Int16整型</param> /// <returns></returns> public static int ConvertCompl 阅读全文
posted @ 2019-06-20 16:27 鸑鷟虽孤 阅读(4836) 评论(0) 推荐(0)
摘要:1 public class ExcelOperator 2 { 3 public static List<DataTable> Read(string fileName) 4 { 5 List<DataTable> tables = new List<DataTable>(); 6 if (!Fi 阅读全文
posted @ 2018-12-11 16:55 鸑鷟虽孤 阅读(1226) 评论(0) 推荐(0)