上一页 1 ··· 81 82 83 84 85 86 87 88 89 ··· 92 下一页
posted @ 2010-07-17 12:41 庚武 Views(2531) Comments(0) Diggs(0) Edit
http://en.wikipedia.org/wiki/Dependency_injectionBasicsWithout the concept of dependency injection, a consumer who needs a particular service in order to accomplish a certain task would be responsible... Read More
posted @ 2010-07-17 11:48 庚武 Views(634) Comments(0) Diggs(0) Edit
$("table.datalist tr:nth-child(odd)").addClass("altrow");<script>$(document).ready(function() {$('tr').addClass('odd');$('tr:even').addClass('even'); //奇偶变色,添加样式});</script><style>#h... Read More
posted @ 2010-07-14 18:22 庚武 Views(323) Comments(0) Diggs(1) Edit
1. AnkhSVN - Subversion SCC Provider  http://ankhsvn.open.collab.net/  AnkhSVN是一个VS的Subversion 源代码管理提供者。通过这个插件,你可以方便的在Visual Studio中使用Subversion管理你的项目和代码。这个项目保持着相当的活跃性。在本文发表时最新的版本是2.1.7444。强烈推荐开发者使用,尤... Read More
posted @ 2010-07-14 13:01 庚武 Views(3817) Comments(0) Diggs(0) Edit
WOX是一个开放源代码的项目(http://woxserializer.sourceforge.net/)。他可以序列化Java和C#对象到XML,也可以还原。他的主要特点是使用了新一代的XML标准,其目的是让语言更独立。这意味着,如果我们序列化一个Java对象到XML,我们可以采用XML来重建对象成C#,反之亦然。WOX提供了一个简单,稳定的方式序列化对象到XML。他易于使用,你不需要修改您的源... Read More
posted @ 2010-07-13 23:15 庚武 Views(507) Comments(0) Diggs(0) Edit
posted @ 2010-07-12 20:13 庚武 Views(587) Comments(0) Diggs(1) Edit
Remoting技术Microsoft公司的COM最初是为了使同一台机器中的对象到对象的调用更为简单而设计的。这项目技术使得对象调用更易于代码化,但COM不能实现分布式应用。Microsoft公司接着发布了DCOM,它使COM对象通过使用授权的Microsoft通信协议在网上发送请求来调用另一台计算机上的COM对象。.NET通过一种被称为Remoting的新技术,改进了它原有的DCOM技术。在.N... Read More
posted @ 2010-07-11 17:13 庚武 Views(307) Comments(0) Diggs(0) Edit
Server://类[代码]服务器端配置文件:RemotingConfig.cfg<?xmlversion="1.0"encoding="utf-8"?>[代码]Client:[代码]Client配置文件:[代码]项目文件: /Files/wucg/TestConsoleApp.rar Read More
posted @ 2010-07-11 17:02 庚武 Views(264) Comments(1) Diggs(0) Edit
C:\Program Files\Microsoft Visual Studio 9.0\VC>wsdl /n:TestWebService/o:c:\temp\TestMyServices.cs http://localhost/MyWebService/Service1.asmx?wsdl或wsdl /language:cs /n:TestDemo /out:d:\Temp\TestSe... Read More
posted @ 2010-07-10 21:43 庚武 Views(1778) Comments(0) Diggs(0) Edit
快速排序(quick sorting 又称 划分排序),是对气泡排序的改进。原理:从待排序区间(a[0]到a[n-1])选取第一个为基准元素。通过从两端向中间顺序进行比较和交换,使前面单元中只包含比 基准元素小的数。....[代码] Swap(ref arr[i],ref arr[j]); }}while(i<j);Swap(refarr[s],refarr[j]);//一次比较完成(基准与... Read More
posted @ 2010-07-10 13:41 庚武 Views(247) Comments(0) Diggs(0) Edit
上一页 1 ··· 81 82 83 84 85 86 87 88 89 ··· 92 下一页