码迷,mamicode.com
首页 >  
搜索关键字:linq to objects    ( 10076个结果
对NSArray中自定义的对象进行排序
本文译自How to sort NSArray with custom objects。我们开发的每个程序都会使用到一些数据,而这些数据一般被封装在一个自定义的类中。例如一个音乐程序可能会有一个Song类,聊天程序则又一个Friend类,点菜程序会有一个Recipe类等。有时候我们希望在程序中显示的...
分类:其他好文   时间:2014-06-29 15:29:25    阅读次数:342
实现 memcpy 函数
memcpy() 的解释:void* memcpy(void* dst, const void* src, size_t n);// if copying takes place between objects that overlap, the behavior is undefined.因此自己...
分类:其他好文   时间:2014-06-07 04:35:21    阅读次数:551
第 2 章 编写 C# 程序
2.1 Visual Studio 2005开发环境2.2 控制台应用程序 试试看:创建一个简单的控制台应用程序using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace C....
分类:其他好文   时间:2014-06-07 03:00:19    阅读次数:241
SQL /LINQ/Lamda
SQLLINQLambdaSELECT *FROM HumanResources.Employeefrom e in Employeesselect eEmployees .Select (e => e)SELECT e.LoginID, e.JobTitleFROM HumanResources....
分类:数据库   时间:2014-05-29 12:24:05    阅读次数:317
多线程
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u...
分类:编程语言   时间:2014-05-29 04:01:44    阅读次数:276
ASP.NET文件操作通用类
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 6 using System.IO; 7 using System.Web; 8 usi...
分类:Web程序   时间:2014-05-29 01:07:43    阅读次数:392
C#.net word excel powerpoint (ppt) 转换成 pdf 文件
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u...
分类:Web程序   时间:2014-05-28 18:29:46    阅读次数:378
LINQ语句中的.AsEnumerable() 和 .AsQueryable()的区别【转】
在写LINQ语句的时候,往往会看到.AsEnumerable() 和 .AsQueryable() 。例如:string strcon ="Data Source=.\\SQLEXPRESS;Initial Catalog=Db_Example;Persist Security Info=True;...
分类:其他好文   时间:2014-05-28 16:07:41    阅读次数:418
5个Xcode开发调试技巧
转自Joywii的博客,原文:Four Tips for Debugging in XCode Like a Bro1.Enable NSZombie Objects(开启僵尸对象)Enable NSZombie Objects可能是整个Xcode开发环境中最有用的调试技巧。这个技巧非常非常容易追踪...
分类:其他好文   时间:2014-05-28 12:03:30    阅读次数:233
Linq- ExcuteQuery用法
DataContext.ExecuteQuery方法 (String,Object[])语法:public IEnumerable ExecuteQuery( string query, params Object[] parameters)类型参数:TResult:返回的集合中的元素的...
分类:其他好文   时间:2014-05-28 08:57:51    阅读次数:226
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!