1 using System; 2 using System.Collections.Generic; 
3 using System.ComponentModel; 4 using System.Data; 5 using System.Drawing; 6 
using System.Linq; ....
                            
                            
                                分类:
其他好文   时间:
2014-05-09 16:00:14   
                                阅读次数:
209
                             
                    
                        
                            
                            
                                一、基础技术选型 C# .NET 3.5/4.0 这两个版本的.NET已经相当方便(Linq, 
Lambda,Parallel),语法简洁,配合WCF和WF两项技术,可以满足快速开发,维护方便的目标。 Win Form 
因ERP项目涉及大量的表单(Entry),查询(Enquiry),报表(Repo...
                            
                            
                                分类:
其他好文   时间:
2014-05-09 15:56:54   
                                阅读次数:
352
                             
                    
                        
                            
                            
                                using System;using 
System.Collections.Generic;using System.Linq;using System.Text;using 
System.Threading.Tasks;namespace OverrideTest{ class A {...
                            
                            
                                分类:
其他好文   时间:
2014-05-09 13:43:24   
                                阅读次数:
291
                             
                    
                        
                            
                            
                                第七章 代理(1)一、代理要声明二、代理使用步骤声明代理初始化代理(使用 实例的方法名 
作为参数)使用代理代码示例:/*C7.1.2*/using System;using System.Collections.Generic;using 
System.Linq;using System.Text;...
                            
                            
                                分类:
其他好文   时间:
2014-05-09 10:03:41   
                                阅读次数:
449
                             
                    
                        
                            
                            
                                using System;using System.Collections.Generic;using 
System.Linq;using System.Text;using System.Threading.Tasks;using 
System.Threading;using System.Run...
                            
                            
                                分类:
其他好文   时间:
2014-05-09 07:46:58   
                                阅读次数:
370
                             
                    
                        
                            
                            
                                数据库中的数字和编程语言中的数字有显著的不同,数据库中的数字可以为空,C#中的数字不能为空。int? x = null; 
//此时x可以为空测试类(NullableTest)using System;using System.Collections.Generic;using 
System.Linq...
                            
                            
                                分类:
其他好文   时间:
2014-05-09 03:20:29   
                                阅读次数:
303
                             
                    
                        
                            
                            
                                1.创建工程文件-> 新建->网站 如下图。工程建好后,会自动添加如下代码: 1 
using System; 2 using System.Linq; 3 using System.Web; 4 using 
System.Web.Services; 5 using System.Web.Servic...
                            
                            
                                分类:
Web程序   时间:
2014-05-09 02:59:12   
                                阅读次数:
608
                             
                    
                        
                            
                            
                                1 .NET Framework常见的API要熟练掌握。 2 Linq to Object。Linq 
to 
Object是一项很重要的技术。如果没有这项技术,数据的查找和操作的代码会被foreach充满,这样不容易维护,而且有很多代码都是routine代码,可以省略的。 
同时,与Linq搭配的技术L...
                            
                            
                                分类:
Web程序   时间:
2014-05-08 23:57:10   
                                阅读次数:
524
                             
                    
                        
                            
                            
                                案例:汽车表car,系列表brand,厂商表productorprivate 
MyCarDataContext _Context = new MyCarDataContext();(1)查询全部汽车信息var list = 
_Context.Car;LINQ语法:var list = from p ...
                            
                            
                                分类:
其他好文   时间:
2014-05-08 23:25:07   
                                阅读次数:
443
                             
                    
                        
                            
                            
                                using System;using System.Collections.Generic;using 
System.Linq;using System.Text;using System.Net;using System.IO;using 
System.Runtime.InteropService...
                            
                            
                                分类:
Web程序   时间:
2014-05-08 23:12:06   
                                阅读次数:
622