湖边的白杨树

探索是一种乐趣

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 22 下一页

2015年4月12日

摘要: 参考:http://www.renfei.org/blog/mac-os-x-terminal-101.htmlOne command line includes 4 parts:Command Name、Options、Arguments、Extras .man : Give the manua... 阅读全文
posted @ 2015-04-12 10:32 fdyang 阅读(264) 评论(0) 推荐(0)

2015年4月10日

摘要: 1.简述sizeof和strlen的区别 最常考察的题目之一。主要区别如下: 1)sizeof是一个操作符,strlen是库函数。 2)sizeof的参数可以是数据的类型,也可以是变量,而strlen只能以结尾为‘\0‘的字符串作参数。 3)编译器在编译时就计算出了... 阅读全文
posted @ 2015-04-10 13:40 fdyang 阅读(293) 评论(0) 推荐(0)

2015年4月5日

摘要: 注: 如下的题目皆来自互联网,答案是结合了自己的习惯稍作了修改。1. 求一个数的二进制中的1的个数。int func(int x){ int count = 0; while (x) { count++; x = x& (x - 1); } ... 阅读全文
posted @ 2015-04-05 23:03 fdyang 阅读(838) 评论(0) 推荐(0)

2015年3月25日

摘要: if (!this.CanExecuteSubmitButton) { this.CanExecuteSubmitButton = true; CommandManager.Invalidat... 阅读全文
posted @ 2015-03-25 15:40 fdyang 阅读(293) 评论(0) 推荐(0)

2015年3月8日

摘要: CSC : fatal error CS0042: Unexpected error creating debug information file 'xxxx.PDB' -- 'c:\Builds\xxxx.pdb: The process cannot access the file becau... 阅读全文
posted @ 2015-03-08 12:14 fdyang 阅读(567) 评论(0) 推荐(0)

2015年3月4日

摘要: static void Main(string[] args) { StringBuilder sb = new StringBuilder(); string test = "124454664{0}89jnhb"; ... 阅读全文
posted @ 2015-03-04 17:18 fdyang 阅读(5924) 评论(0) 推荐(0)

2015年2月3日

摘要: ASP.NET: System.BadImageFormatException: An attempt was made to load a program with an incorrect format. 修改build 的环境从 “Any CPU”, 改成 “x86". 主要原因是 调用的*. 阅读全文
posted @ 2015-02-03 15:56 fdyang 阅读(1752) 评论(0) 推荐(0)

摘要: 一个Project 引用 另外 一个Project显示黄色叹号,后来发现 后一本Project的build设定为.Net4.5, 前一个为4.0, 将版本改为一致后,问题解决。 阅读全文
posted @ 2015-02-03 15:01 fdyang 阅读(2739) 评论(0) 推荐(1)

2015年1月30日

摘要: .NET 4.0 requires XP SP3, Win2k3 SP2, Vista, 7, or 2008(R2).NET 3.5 requires XP SP2 or newer..NET 2.0 requires Win2K SP(3?) or newer.Incidentally, XP ... 阅读全文
posted @ 2015-01-30 16:53 fdyang 阅读(215) 评论(0) 推荐(0)

2015年1月24日

摘要: 需要做一个多程序间的通讯,采用WCF和WCF Service是目前的选择。 需求:和产品进行通讯,和用户有交互操作,并将最后结果传送个DB 基本思路: 1. 用WPF客户端程序和产品进行通讯,获取必要的结果。 2. WPF客户端程序里调用WCF 的Proxy, 将结果传送个WCF Service。 阅读全文
posted @ 2015-01-24 16:46 fdyang 阅读(409) 评论(1) 推荐(0)

上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 22 下一页