上一页 1 ··· 365 366 367 368 369 370 371 372 373 ··· 399 下一页
摘要: 在解决方案上右键,选择属性。这样设置之后,点击开始运行之后,会同时启动2个项目。适合一个项目既包含客户端也包含服务端,方便调试 阅读全文
posted @ 2015-07-13 09:09 ChuckLu 阅读(2468) 评论(0) 推荐(0)
摘要: Which are in?Given two arrays of strings a1 and a2 return a sorted array in lexicographical order and without duplicates of the strings of a1 which ar... 阅读全文
posted @ 2015-07-12 22:27 ChuckLu 阅读(618) 评论(0) 推荐(0)
摘要: IQ TestDescription:Bob is preparing to pass IQ test. The most frequent task in this test isto find out which one of the given numbers differs from the... 阅读全文
posted @ 2015-07-12 03:51 ChuckLu 阅读(1156) 评论(0) 推荐(0)
摘要: 正文 string str = "a---b---c"; string[] array = str.Split(new char[]{'-'}); 分割之后array中的元素为 分析: a---b---c 123456789 待分割的字符串使用a---b---c,长度为9。 以-来分割,有6个-,所 阅读全文
posted @ 2015-07-12 02:40 ChuckLu 阅读(227) 评论(0) 推荐(0)
摘要: System.Linq System.Linq.Enumerable 类 Range Repeat Reverse Select Where Sum Zip Aggregate Count FirstOrDefault Join Max Min //Returns the only element 阅读全文
posted @ 2015-07-10 14:52 ChuckLu 阅读(240) 评论(0) 推荐(0)
摘要: Good vs EvilDescriptionMiddle Earth is about to go to war. The forces of good will have many battles with the forces of evil. Different races will cer... 阅读全文
posted @ 2015-07-10 14:41 ChuckLu 阅读(462) 评论(0) 推荐(0)
摘要: 创建wcf服务库的时候,系统自动生成的代码 服务实现 阅读全文
posted @ 2015-07-10 10:37 ChuckLu 阅读(183) 评论(0) 推荐(0)
摘要: http://freejvm.iteye.com/blog/976878需要找时间验证一下,另外还需要学习多个参数的尾递归如何来实现的技巧斐波那契数列第n个数的求值, public static long fibo4(int n) { if (n //... 阅读全文
posted @ 2015-07-10 09:24 ChuckLu 阅读(940) 评论(0) 推荐(0)
摘要: C#中的异常处理 while (ex != null) { WriteExceptionLog(ex, fileName); ex = ex.InnerException; } /// <summary> /// 将异常处理成字符串的形式,然后写入文件 /// </summary> /// <par 阅读全文
posted @ 2015-07-09 18:34 ChuckLu 阅读(463) 评论(0) 推荐(0)
摘要: How to: Create a Windows Communication Foundation Client To create a Windows Communication Foundation client Create a new console application project 阅读全文
posted @ 2015-07-09 15:46 ChuckLu 阅读(186) 评论(0) 推荐(0)
上一页 1 ··· 365 366 367 368 369 370 371 372 373 ··· 399 下一页