• .NET 实现并行的几种方式(一)

    好久没有更新了,今天来一篇,算是《同步与异步》系列的开篇吧,加油,坚持下去(PS:越来越懒了)。 一、Thread 利用Thread 可以直接创建和控制线程,在我的认知里它是最古老的技术了。因为out了、所以不再写例子了。 二、ThreadPool 由于线程的创建和销毁需要耗费大量...

    2018-06-23 23:16:04

  • DataTable转实体Model,DataRow转实体Model,DataTabl

    前言,此方法利用反射将DataRow转成实体,由于反射性能不行,大家就看看就行了吧。 代码来啦 using System; using System.Collections.Generic; using System.Data; using System.Linq; using System.Reflection; using System.Text; namespace WangSql.DBUtility{ pub...

    2018-06-23 23:16:01

  • 几个比较”有意思“的JS脚本

    1.获取内网和公网真实IP地址(引用地址) !DOCTYPE htmlhtml head meta http-equiv="Content-Type" content="text/html; charset=utf-8" /head body h4 Demo for: a href="https://github.com/diafygi/webrtc-ips" https://github.com/diafygi/webrtc-ips /a /h4 p Thi...

    2018-06-23 23:15:59

  • 一步步开发自己的博客 .NET版(11、Web.config文件的

    Web.config的读取 对于Web.config的读取大家都很属性了。平时我们用得比较多的就是appSettings节点下配置。如: 我们对应的代码是: = ConfigurationManager.AppSettings[OAuth_QQ_ClientId]; = ConfigurationManager.AppSettings[OAuth_QQ_CallbackUrl]; = Configurat...

    2018-06-23 23:16:00

  • 在程序中添加计时器,来查看代码的运行速度

    Stopwatch watch = new Stopwatch();//初始化一个对象 watch.Start();//开始计时 //测试代码 watch.Stop();//停止计时 System.Diagnostics.Debug.WriteLine("耗时:" + watch.Elapsed);//输出时间...

    2018-06-23 23:15:58

  • 五、谈扩展方法的理解

    为什么要用扩展方法 在说什么是扩展方法之前我们先来说说为什么要用扩展方法。 首先我们定义一个 Person 类: public class Person{ /// summary /// 出生日期 /// /summary public DateTime BirthTime { get ; set ; } /// summary /// 死亡日期 /// /summary public...

    2018-06-23 23:15:53

  • 如何调用网页视屏插件

    网页中插入代码: embed src=" http://static.youku.com/v/swf/qplayer.swf?winType=adshowamp;VideoIDS= XMzU4ODg2OTg0 amp;isAutoPlay=falseamp;isShowRelatedVideo=false" wmode="transparent" width="360" align="center" border="0" height="240" 其中红色部分就...

    2018-06-23 23:15:57

  • Jquery 全选、反选问题的记录

    div id= " list " ul id= " choseList " liinput type= " checkbox " name= " chose " value= " 1 " 打篮球/li liinput type= " checkbox " name= " chose " value= " 1 " 踢足球/li liinput type= " checkbox " name= " chose " value= " 1 " 打乒乓球/li liinput typ...

    2018-06-23 23:15:55

  • VB的判断语句和循环语句

    判断语句 If语句 if语句共有4种写法: 第一种语法: If 条件判断语句 then 程序代码 第二种语法:If 条件判断语句 then 程序代码 else 程式代码 第三种语法: If 条件判断语句 then 程式代码 Else 程式代码 End if 例如:判断输入框是否为空 If Len(TextBox1.Text) 0 Or Le...

    2018-06-23 23:15:55

  • 技术列表

    前段:bootstrap,jquery,vue.js,ztree 实体验证:FluentValidation 实体转换:automapper orm:dapper,ef 缓存:redis,CacheManager 搜索:elasticsearch 消息队列:redis,kafka session共享:RedisSessionStateProvider 负载均衡做session共享。 excel:npoi 日...

    2018-06-23 23:15:53

2