大大大大大大猩猩

导航

2022年5月8日 #

WPF简述

摘要: 阅读全文

posted @ 2022-05-08 15:59 大大大大大大猩猩 阅读(30) 评论(0) 推荐(0) 编辑

2021年7月22日 #

Image文件生成PDF(多页)

摘要: Image文件生成PDF文件,可多页,可设置纸张大小 /// <summary> /// Image文件生成PDF /// </summary> /// <param name="pdfPath">PDF存放路径</param> /// <param name="imgs">source</para 阅读全文

posted @ 2021-07-22 16:10 大大大大大大猩猩 阅读(125) 评论(0) 推荐(0) 编辑

2021年7月17日 #

UML类图

摘要: 继承关系:用空心三角形+实线表示 实现接口:用空心三角形+虚线表示 关联关系:用实线箭头表示 聚合关系:用空心菱形+实线箭头表示 合成(组合):用实心菱形+实线箭头表示 依赖关系:用虚线箭头表示 一、类(Class): 矩形框 类图分三层: 1:类的名称,斜体显示代表抽象类 2:类的特性,通常是字段 阅读全文

posted @ 2021-07-17 11:20 大大大大大大猩猩 阅读(104) 评论(0) 推荐(0) 编辑

2021年3月3日 #

获取当前系统的IP

摘要: 获取当前ip 1 public static string GetIpAddress() 2 { 3 string name = Dns.GetHostName(); //获取本地计算机的主机名。 4 IPAddress[] ipadrlist = Dns.GetHostAddresses(name 阅读全文

posted @ 2021-03-03 10:03 大大大大大大猩猩 阅读(73) 评论(0) 推荐(0) 编辑

2021年3月2日 #

生成连续的UUID

摘要: 添加接口文件 1 [DllImport("rpcrt4.dll", SetLastError = true)] 2 private static extern int UuidCreateSequential(out Guid guid); View Code 生成连续的UUID,底层调用了Wind 阅读全文

posted @ 2021-03-02 17:06 大大大大大大猩猩 阅读(203) 评论(0) 推荐(0) 编辑