.......

啦啦啦,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. Learn ZYNC (4)

    最近整理出一些适合学习zed的实例(所有的例程都基于Vivado2013.4开发环境) (1)关于zed双核的测试案例: 官方链接:地址1.11.standalone,地址1.12.linux 修改源 ...

  2. php数组序列化serialize与unserialize

    $arr=array('1','2','3');echo serialize($arr); //序列化 a:3:{i:0;s:1:"1";i:1;s:1:"2" ...

  3. Shell 之外 试试不操作 shell 来实现同样的效果

    执行程序时发生了什么当你双击桌面上的终端程序图标时,就会打开一个载入shell的程序. 你键入的命令不会直接在内核执行,而是先和 shell 进行交互.Command (eg. `ls -l')↓Te ...

  4. 分布式搜索ElasticSearch单机与服务器环境搭建

    从上方插件官网中下载适合的dist包,然后解压.进入bin目录,可以看到一堆sh脚本.在bin目录下创建一个test.sh: bin=/home/csonezp/Dev/elasticsearch-j ...

  5. “迷宫”sprint——6.8

    会议时间:2015.6.8 ,12:30——13:00 会议内容:开始第二阶段冲刺,分配任务. 我的任务:完成安卓环境搭建.

  6. php课程---面向对象

    面向对象:一:定义类 class Dog { var $name; var $age; var $pinzhong; function Jiao() { echo "{$this->n ...

  7. 分享一个基于HTML5实现的视频播放器【转】

    什么是hivideo? 最近一段时间在使用PhoneGap开发一个App应用,App需要播放视频,本想直接使用html5的video,但使用它在全屏播放时不支持横屏播放,只能放弃.最终决定还是自己封装 ...

  8. ajax for in eval()知识点的应用

    <!doctype html> <html lang="en"> <head> <meta charset="UTF-8&quo ...

  9. python随机服务器的双线出口ip发送邮件

    #-*- coding:utf-8 -*-import smtplibimport sysimport random import socketfrom email.mime.text import ...

  10. Linux内核设计第五周——扒开系统调用三层皮(下)

    Linux内核设计第五周 ——扒开系统调用三层皮(下) 一.知识点总结 1.给MenuOS增加新的命令的步骤 更新menu代码到最新版 test.c中main函数里,增加MenuConfig() 增加 ...