摘要:
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Net.Http; namespace WebBaoXiuCustom { //httpMethod请求方式 delete put post get //controllerName... 阅读全文
摘要:
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Data; using Newtonsoft.Json; using MySql.Data.MySqlClient; namespace... 阅读全文
摘要:
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Model; using System.Data; using System.Data.SqlClient; using System.Configura... 阅读全文
摘要:
1.概念: 是一种按照一定的规则,自动地抓取万维网信息的程序或者脚本; 2.案例: 一: 爬虫抓取信息 引用名称空间: using System.Net; 代码: 二: 爬虫抓取指定信息 界面: 引用空间: using System.Net.Http; using HtmlAgilityPack; 阅读全文
摘要:
1.懒汉模式 2.普通类改为单利模式 3.内部静态类实现双重验证 4.双重验证 5.控制台输出 阅读全文
摘要:
ZipFile类用于选择文件或文件夹进行压缩生成压缩包。 1.ZipFile常见属性: Count:文件数目(在ComitUpdat); Password:压缩包密码 Size:压缩包占用空间大小 Name:压缩包名称,默认输出是文件路径 ZipEntry:压缩包里的文件,通过索引[]访问 2.Zi 阅读全文
摘要:
准备工作:在程序包管理器控制台安装 Install-Package SharpZipLib引用 using ICSharpCode.SharpZipLib.Zip; 页面: 代码如下: 阅读全文
摘要:
在学习的过程中,类和结构,接口和抽象类是有些相似的地方的,为了区分之间的区别,下面分别介绍类,结构,接口,抽象类的定义分别是什么。有不足或不对的地方,请大家指点。 类的定义: 类是有class定义的,后面跟类的名称。类的主体包含在一对花括号内。它是具有相同的特性属性和行为的对象的抽象。 比如 :男人 阅读全文