.......

啦啦啦,test。。。

http://bbs.csdn.net/topics/380175613

http://zhidao.baidu.com/question/580940892.html

http://hovertree.com/h/bjaf/iip6s0h0.htm

--disable the backspace button in wpf page navigation

http://stackoverflow.com/questions/700094/disable-backspace-in-wpf

wpf主题:

http://www.16aspx.com/CodeView/WPFThemeHuan/WPF.Themes/ShinyRed/Theme.xaml.html

http://stackoverflow.com/questions/7781007/define-datagridview-column-type-programmatically

http://stackoverflow.com/questions/1247800/how-to-change-the-color-of-winform-datagridview-header

http://stackoverflow.com/questions/17530323/adding-new-user-control-programmatically-in-windows-forms

http://stackoverflow.com/questions/15653306/hiding-default-gray-column-in-datagridview-winform

http://www.codeproject.com/Articles/64591/DataGridView-based-user-control-with-edit-dialog

http://blog.csdn.net/conexpress/article/details/3338481

输入首字母,下拉列表款自动根据首字母选择出现相关的项目:

http://stackoverflow.com/questions/10187963/selecting-an-item-in-combobox-by-typing

combobox初始化值为空

http://stackoverflow.com/questions/25657352/how-to-set-combobox-value-to-null-or-empty-while-loading-data-to-it-from-databas

EF 批量处理:

http://blog.csdn.net/zlts000/article/details/46385773

TPL:异步处理

https://msdn.microsoft.com/zh-cn/library/dd997423.aspx

http://www.cnblogs.com/xishuai/p/ef-dbcontext-thread-safe.html

多线程:

http://www.cnblogs.com/huangxincheng/archive/2012/04/02/2429543.html

http://blog.csdn.net/wangzhiyu1980/article/details/9915431

http://www.cnblogs.com/fangyz/p/5173244.html

http://my.oschina.net/Tsybius2014/blog/327330

http://blog.jobbole.com/92001/

http://www.cnblogs.com/seacryfly/p/3848438.html

http://blog.csdn.net/wxnjob/article/details/6124964  ///fileupload, 多线程

concurrentbag 和list 的区别:

http://www.tuicool.com/articles/B7BjM3B

wcf:

wcf restful

https://msdn.microsoft.com/en-us/library/dd203052.aspx

http://www.codeproject.com/Articles/571813/A-Beginners-Tutorial-on-Creating-WCF-REST-Services

http://www.codeproject.com/Articles/105273/Create-RESTful-WCF-Service-API-Step-By-Step-Guide

http://www.infoworld.com/article/3061973/application-development/how-to-create-a-restful-service-in-wcf.html

http://www.topwcftutorials.net/2013/09/simple-steps-for-restful-service.html

wix:

https://helgeklein.com/blog/2014/09/real-world-example-wix-msi-application-installer/?PageSpeed=noscript

查找数据库剩余空间:

https://msdn.microsoft.com/zh-cn/library/ms188776.aspx

http://blog.csdn.net/ariczhou/article/details/46517943

cannot connect to wmi provider:
http://tritoneco.com/2014/05/15/fix-sql-configuration-manager-cannot-connect-to-wmi-provider/

UseFul Collection的更多相关文章

  1. Java基础Collection集合

    1.Collection是所有集合的父类,在JDK1.5之后又加入了Iterable超级类(可以不用了解) 2.学习集合从Collection开始,所有集合都继承了他的方法 集合结构如图:

  2. Collection集合

    一些关于集合内部算法可以查阅这篇文章<容器类总结>. (Abstract+) Collection 子类:List,Queue,Set 增: add(E):boolean addAll(C ...

  3. iOS之解决崩溃Collection <__NSArrayM: 0xb550c30> was mutated while being enumerated.

    崩溃提示:Terminating app due to uncaught exception 'NSGenericException', reason: '*** Collection <CAL ...

  4. [Java Collection]List分组之简单应用.

    前言 今天有一个新需求, 是对一个List进行分组, 于是便百度到一些可用的代码以及我们项目使用的一些tools, 在这里总结下方便以后查阅. 一: 需求 现在我们一个数据库表t_series_val ...

  5. Java Collection开发技巧

    Java Collection(集合) 集合中的一些技巧: 通过Collections类的静态方法,可以对集合进行一些操作 1 java.util.List<Integer> number ...

  6. 浅谈Collection集合

    俗话说:一个东西,一件事都离不开三句话:"是什么,为什么,怎么办" 集合是什么: 集合简单的说一个数组集合的高级体现,用来存储数据或对象的容器: 集合为什么存在: 集合只是体现了对 ...

  7. Backbone中的model和collection在做save或者create操作时, 如何选择用POST还是PUT方法 ?

    Model和Collection和后台的WEB server进行数据同步非常方便, 都只需要在实行里面添加一url就可以了,backbone会在model进行save或者collection进行cre ...

  8. Collection和Collections的区别?

    Collection 是接口(Interface),是集合类的上层接口. Collections是类(Class),集合操作的工具类,服务于Collection框架.它是一个算法类,提供一系列静态方法 ...

  9. Unity性能优化(3)-官方教程Optimizing garbage collection in Unity games翻译

    本文是Unity官方教程,性能优化系列的第三篇<Optimizing garbage collection in Unity games>的翻译. 相关文章: Unity性能优化(1)-官 ...

  10. MyBatis中collection (一对一,一对多)

    MyBatis学习:http://www.mybatis.org/mybatis-3/zh/index.html 大对象InsuranceDetailsVO: com.quicksure.mobile ...

随机推荐

  1. css文本溢出省略号

    .ellip{ display: block; width:200px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; ...

  2. Asp.net DropDownList 自定义样式(想怎么改就怎么改!)

    最近在做一个asp.net的项目,需要对默认的dropdownlist样式进行美化,固有的dropdownlist的小箭头实在让人无法接受,于是开始在百度,google 上下求索,天不负有心人,终于找 ...

  3. php5-fpm.sock failed (13: Permission denied) error

    In order to fix the php5-fpm.sock failed error follow these instructions 1) Make sure your virtual h ...

  4. yield return的用法简介

    使用yield return 语句可一次返回一个元素. 迭代器的声明必须满足以下要求: 返回类型必须为 IEnumerable.IEnumerable<T>.IEnumerator 或 I ...

  5. UIView常见属性设置汇总

    1.圆角设置 viewT.layer.cornerRadius = 10;//设置那个圆角的有多圆 viewT.layer.borderWidth = 10;//设置边框的宽度,当然可以不要 view ...

  6. Git diff 常见用法

      Git diff 用于比较两次修改的差异 1.1 比较工作区与暂存区 git diff  比较的是单个仓库的工作区与暂存区的差别,repo diff是对git diff的封装,用来分别显示各个项目 ...

  7. mongoDB(1)

    1.查询时,不写条件的查询,速度要远远大于有条件的查询. 2.消除重复数据: 3.db.listCommands() 查看mongo的runCommand支持哪些功能了. db.runCommand( ...

  8. kubernetes 1.3 的安装和集群环境部署

    简介: Docker:是一个开源的应用容器引擎,可以为应用创建一个轻量级的.可移植的.自给自足的容器. Kubernetes:由Google开源的Docker容器集群管理系统,为容器化的应用提供资源调 ...

  9. JQuery拖拽排序

    1,引用JqueryUI $(function(){ $(".m_title").bind('mouseover',function(){ $(this).css("cu ...

  10. Zabbix通过percona监控MySQL

    因为Zabbix自带的MySQL监控没有提供可以直接使用的Key,所以一般不采用,业界的同学们都使用Percona Monitoring Plugins 监控 MySQL的方式 Percona介绍 P ...