04 2018 档案
摘要:查找替换 ctrl + r注释 ctrl+/格式化代码 ctrl+alt+l 跳转到定义 ctrl+alt+b 常用数据类型 数值类型:int float是两个比较常用的数值类型。Bool类型。String类型。'vichin' "vichin" """vichin""" '''vichin'''
阅读全文
摘要:先到python 官网下载python。 下载好了之后,直接运行exe文件,进行安装(在安装程序运行后的第一个form上,点击next的时候,在next的左侧有一排文字和一个复选框,那个是添加环境变量,记得勾上。) 安装好了之后,可以在控制台中输入python再按回车来确认是否安装成功! 下面是到p
阅读全文
摘要:DataTable dt = SqlHelper.Query(strQuery); var data = dt.AsEnumerable().Skip((page - 1) * size).Take(pagesize); List listData = new List(); foreach (var item in data) { Model m=new Model(); ...
阅读全文
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Web; namespace Common { /// /// 封装对缓存的操作!(对缓存的操作,最重要的就是取和存) ...
阅读全文