摘要: 最早写冒泡排序是在上学的时候,用c语言实现的,工作后再也没写过这个无用的算法,然后见网上很多人执着于这个算法,甚至用他来评价一个程序员的素质,于是乎试着用C#写了一遍。程序中的后三行注释用于避免对已排序好的数组进行重复排序usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;namespaceBubbleSortCSharp{classProgram{staticvoidMain(string[]args){int[]arr={18,3,8,2,7,9,9,9,5,11,1,10,30,20} 阅读全文
posted @ 2012-03-14 15:54 zyip 阅读(205) 评论(0) 推荐(0)
摘要: http://www.microsoft.com/china/community/Column/26.mspxhttp://blog.csdn.net/babyt/article/details/100989# 阅读全文
posted @ 2012-03-02 12:18 zyip 阅读(139) 评论(0) 推荐(0)
摘要: http://www.wowebook.mobi/ 电子书网站 阅读全文
posted @ 2012-02-14 18:58 zyip 阅读(157) 评论(1) 推荐(0)
摘要: /Files/zyip/Sql2008R2InstallBugFix.zipto install sql2008 on windows7, download the attachement , import to registery, the bug will be fixed and you can install the sql2008 阅读全文
posted @ 2012-02-14 15:05 zyip 阅读(364) 评论(0) 推荐(0)
摘要: Introduction to ASP.NET Web Programming Using the Razor SyntaxBy Microsoft ASP.NET Team|June 22, 2010This chapter gives you an overview of programming with ASP.NET Web Pages using the Razor syntax. ASP.NET is Microsoft's technology for running dynamic web pages on web servers.What you'll le 阅读全文
posted @ 2012-02-01 22:51 zyip 阅读(212) 评论(0) 推荐(1)
摘要: http://wenku.baidu.com/view/a32533d4c1c708a1284a4443.html 阅读全文
posted @ 2011-12-09 13:02 zyip 阅读(129) 评论(0) 推荐(0)
摘要: 远程桌面带入声音winXP或win2003具体方法:开始>运行>gpedit.msc打开组策略依次点:计算机配置>管理模板>终端服务>客户端/服务器。右边有一个“允许音频重定向”,设置为“已启用”,注销后再登录就OK了。win7或win2008r2具体方法:开始>运行>gpedit.msc打开组策略依次点:计算机配置>管理模板>Windows 组建>远程桌面服务>远程桌面会话主机>设备和资源重新定向。右边有一个“允许音频和视频播放重定向”,设置为“已启用”,注销后再登录就OK了。win2008r2下我试验了,好使,还要看网 阅读全文
posted @ 2011-12-05 13:51 zyip 阅读(703) 评论(0) 推荐(0)
摘要: Using ASP.NET MVC with Different Versions of IISThis is theC#tutorial (Switch to the Visual Basic tutorial)In this tutorial, you learn how to use ASP.NET MVC, and URL Routing, with different versions of Internet Information Services. You learn different strategies for using ASP.NET MVC with IIS 7.0 阅读全文
posted @ 2011-11-30 10:49 zyip 阅读(358) 评论(0) 推荐(0)
摘要: 添加[[NSNotificationCenter defaultCenter] addObserver:mLoginView selector:@selector(keyboardWillShow:) name:UIKeyboardWillShowNotification object:nil];在keyboardWillShow中调UIView坐标,UIView.center = CGPointMake(x,y);然后在textField的Did End On Edit事件中再改回去http://www.cocoachina.com/bbs/read.php?tid-30877-fpage- 阅读全文
posted @ 2011-03-23 16:31 zyip 阅读(556) 评论(0) 推荐(0)
摘要: [代码] 阅读全文
posted @ 2011-02-21 15:36 zyip 阅读(357) 评论(0) 推荐(0)