.......

啦啦啦,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. FTP目录或文件名有中文时导致,下载失败的问题

    在FTPClient ftpClient = new FTPClient()代码后, ftpClient.connect(url,port)代码前, 调用ftpClient.setAutodetect ...

  2. iOS 状态栏黑色背景白色字体

    一. 状态栏背景(黑色)的设置 1.在有导航栏的情况下,给导航栏设置一个像素为44的背景图片即可 [[UINavigationBar appearance] setBackgroundImage:[U ...

  3. BizTalk动手实验(十三)EDI解决方案开发配置

    1 课程简介 通过本课程熟悉EDI解决文案的开发与配置,本动手实验步骤及内容采用微软官方SDK完成,学员在实验过程中结合官方教程来完成本实验 2 准备工作 从BizTalk安装目录的SDK中将EDI ...

  4. BizTalk开发系列(八) BizTalk Server 常识整理

    1.什么是BizTalk Server?     BizTalk 是业务流程管理服务器,用于连接人员,流程,有效管理和提升业务所需的信息.在原有版本业务 流程管理和SOA/ESB 的基础上,第5 个版 ...

  5. 【iCore3 双核心板】例程八:定时器PWM实验——呼吸灯

    实验指导书及代码包下载: http://pan.baidu.com/s/1dEnH5dB iCore3 购买链接: https://item.taobao.com/item.htm?id=524229 ...

  6. Codevs 1299 切水果

    题目链接 时间限制: 1 s 空间限制: 128000 KB 题目等级 : 大师 Master 题目描述 Description 简单的说,一共N个水果排成一排,切M次,每次切[L,R]区间的所有水果 ...

  7. JQuery-属性

    // attr能访问到的都是html里面的样式,诸如内联样式.外部样式和外联样式该方法访问不到 $('#div1').width('400px') // 这个用来改样式css $("#div ...

  8. dns服务

    http://33024.blog.163.com/blog/static/12307042220119179237568/

  9. sql 在not in 子查询有null值情况下经常出现的陷阱

    如果下:TempSalesPriceFixedValues表和SalesPriceFixedValues表,要求查询出在TempSalesPriceFixedValues表中且不在SalesPrice ...

  10. [转]Android View.onMeasure方法的理解

    转自:http://blog.sina.com.cn/s/blog_61fbf8d10100zzoy.html Android View.onMeasure方法的理解 View在屏幕上显示出来要先经过 ...