C#
m1f2c3
这个作者很懒,什么都没留下…
展开
-
C#动态库创建及使用
创建动态库1、创建项目注意C#工程下面由好多建立动态库的选项,要选择上图中标注的那个2、确认net环境注意动态库的版本要比最终运行的环境的版本要低3、编写代码这步没有什么需要特别说明的,正常写就行using System;using System.Collections.Generic;using System.Linq;using System.Text;u...原创 2019-04-26 17:36:24 · 2462 阅读 · 0 评论 -
将WPF工程打包成动态库
https://blog.csdn.net/liuqiaoying_lqy/article/details/20641365转载 2019-05-05 22:51:14 · 408 阅读 · 0 评论 -
log4net安装及简单使用
1、安装登陆网站https://www.nuget.org/packages/log4net/将Install-Package log4net -Version 2.0.8命令复制到vs的命令行中安装成功2、配置App.config配置<?xml version="1.0" encoding="utf-8"?><configuration> <...原创 2019-05-07 16:10:28 · 1714 阅读 · 0 评论 -
程序设计六大原则
https://blog.csdn.net/fanxudonggreat/article/details/78888267转载 2019-05-16 16:44:32 · 124 阅读 · 0 评论 -
C#HTTPS访问
主要参考https://blog.csdn.net/c1149884598/article/details/86494735wpf工程,为井盖那个项目服务注意,代码中有关url的字符串已经隐藏,需更改后才能执行using System;using System.Collections.Generic;using System.IO;using System.Linq;usi...原创 2019-05-30 20:20:53 · 3911 阅读 · 0 评论