上一页 1 ··· 366 367 368 369 370 371 372 373 374 ··· 401 下一页
摘要: 1.为了确保客户端可以接收到服务端反馈的异常在服务端的配置文件中需要有 在最终发布服务的时候,客户端程序是给客户使用的,为了避免客户直接知道服务端的异常。所以,程序调试完成以后,需要将service... 阅读全文
posted @ 2015-07-13 17:23 ChuckLu 阅读(939) 评论(0) 推荐(0)
摘要: 在解决方案上右键,选择属性。这样设置之后,点击开始运行之后,会同时启动2个项目。适合一个项目既包含客户端也包含服务端,方便调试 阅读全文
posted @ 2015-07-13 09:09 ChuckLu 阅读(2478) 评论(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 阅读(633) 评论(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 阅读(1178) 评论(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 阅读(231) 评论(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 阅读(248) 评论(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 阅读(464) 评论(0) 推荐(0)
摘要: 创建wcf服务库的时候,系统自动生成的代码 服务实现 阅读全文
posted @ 2015-07-10 10:37 ChuckLu 阅读(193) 评论(0) 推荐(0)
摘要: http://freejvm.iteye.com/blog/976878需要找时间验证一下,另外还需要学习多个参数的尾递归如何来实现的技巧斐波那契数列第n个数的求值, public static long fibo4(int n) { if (n //... 阅读全文
posted @ 2015-07-10 09:24 ChuckLu 阅读(951) 评论(0) 推荐(0)
摘要: C#中的异常处理 while (ex != null) { WriteExceptionLog(ex, fileName); ex = ex.InnerException; } /// <summary> /// 将异常处理成字符串的形式,然后写入文件 /// </summary> /// <par 阅读全文
posted @ 2015-07-09 18:34 ChuckLu 阅读(470) 评论(0) 推荐(0)
上一页 1 ··· 366 367 368 369 370 371 372 373 374 ··· 401 下一页