码迷,mamicode.com
首页 >  
搜索关键字:linq to objects    ( 10076个结果
多线程+缓存计算
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Management;using System.Threading.Tasks;namespace TaskT...
分类:编程语言   时间:2014-05-23 08:40:04    阅读次数:413
C#用SerialPort实现串口通讯
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Tex...
分类:其他好文   时间:2014-05-22 12:36:05    阅读次数:243
关于Linq使用过程中遇见的一些小问题的总结
1 使用First()/FirstOrDefault()、Last()/LastOrDefault()方法返回序列中的第一个或者最后一个元素时,应该确保序列已经被正确排序。 int[] numbers = { 3, 1, 23, 10, 5, 12, 7, 2, 4}; int first = numbers.First(); //输出3 int firstOrdered = numbers.O...
分类:其他好文   时间:2014-05-22 07:35:10    阅读次数:196
查询sqlserver数据库视图、存储过程等包含特定的字符串
SELECT A.name , B.definitionFROM SYS.objects A INNER JOIN sys.sql_modules B ON A.object_id = B.object_id ...
分类:数据库   时间:2014-05-22 05:39:16    阅读次数:284
用.net改写的uploadify多文件上传控件
有图真相:ASP.NET代码: C#代码: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using Syste...
分类:Web程序   时间:2014-05-22 05:35:59    阅读次数:338
错误日志类C#
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Windows.Forms;using System.IO;namespace WisdomCity.Enti...
分类:其他好文   时间:2014-05-22 05:08:36    阅读次数:271
Matlab的标记分水岭分割算法
1 综述Separating touching objects in an image is one of the more difficult image processing operations. The watershed transform is often applied to this...
分类:其他好文   时间:2014-05-22 04:27:23    阅读次数:497
WinForm 进度条
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u...
分类:Windows程序   时间:2014-05-22 02:29:34    阅读次数:504
WPF 实现QQ抖动
//wpf中实现类似于qq的抖动窗效果//前段页面 //后台using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Window...
分类:其他好文   时间:2014-05-22 02:20:32    阅读次数:212
keil 中的一些设置
option for target 'target 1' 中: 第3选项output: select folder for objects :此选项是选择编译时产生的以希望文件,点击选择路径,不然这些文件就会生成并保存在和项目文件.prov 同个文件下,导致项目文件不好找。 第4选项listing:也是同第3选项同样原理。   第6选项c/c++:在include paths 设置h文件路...
分类:其他好文   时间:2014-05-20 16:17:17    阅读次数:383
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!