随笔分类 -  C#

摘要:https://msdn.microsoft.com/en-us/library/dd941355(office.14).aspxBuilding MAPI Applications on 32-Bit and 64-Bit PlatformsOffice 2010O... 阅读全文
posted @ 2015-05-16 13:59 andy_0212 阅读(195) 评论(0) 推荐(0)
摘要:2011-10-25 09:46 Visual Studio使用DebuggerBrowsable和DebuggerDisplay自定义调试窗体使用DebuggerBrowsable特性可以自定义调试窗体。使用DebuggerDisplay特性可以自定义调试信息的显示... 阅读全文
posted @ 2012-09-25 15:54 andy_0212 阅读(855) 评论(0) 推荐(0)
摘要:http://studiostyl.es/ 阅读全文
posted @ 2012-07-28 16:10 andy_0212 阅读(98) 评论(0) 推荐(0)
摘要:private void tBox_KeyPress(object sender, KeyPressEventArgs e) { if (e.KeyChar == 0x20) e.KeyChar = (char)0; //禁止空格... 阅读全文
posted @ 2012-07-22 16:31 andy_0212 阅读(173) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2012-05-28 14:15 andy_0212 阅读(123) 评论(0) 推荐(0)
摘要:FxCop是一个代码分析工具,它依照微软.NET框架的设计规范对托管代码assembly(可称为程序集,assembly实际上指的就是.net中的.exe或者.dll文件(不包括netmodule文件),这种文件中包含四种信息:assembly的清单(包括引用外部的a... 阅读全文
posted @ 2011-08-30 16:41 andy_0212 阅读(238) 评论(0) 推荐(0)
摘要:When you run unit test by NUnit, some times, it will say that "Some of the *.dll or its dependency could not be found", this time you ... 阅读全文
posted @ 2011-08-26 14:35 andy_0212 阅读(87) 评论(0) 推荐(0)
摘要:使用ReSharper插件能够进行代码简化和智能提示Resharper 5.1 注册码User Name: UserKey: D9d09DSYJel9IyuDU4btAQwZcbLugUad 阅读全文
posted @ 2011-08-21 16:26 andy_0212 阅读(93) 评论(0) 推荐(0)
摘要:http://www.codeproject.com/KB/cs/DynamicCodeGeneration.aspxDynamic Code Generation Why generate code? As the name suggests, dynamic c... 阅读全文
posted @ 2011-08-18 09:41 andy_0212 阅读(162) 评论(0) 推荐(0)
摘要:I have installed only Visual Studio 2010, and Dotfuscator 4.4. Then I register the software Dotfuscator 4.4. But when I run Dotfuscato... 阅读全文
posted @ 2010-11-23 17:58 andy_0212 阅读(101) 评论(0) 推荐(0)
摘要:今天我想打开一个control, 但是vs2005老报错: "Not enough storage is available to process the command.",编译能通过,即使我重启机子也是这样。 Solution:1.commnet some lin... 阅读全文
posted @ 2009-11-18 20:41 andy_0212 阅读(163) 评论(0) 推荐(0)
摘要:Visual Studio.NET采用两种文件类型(.sln和.suo)来存储特定于解决方案的设置它们总称为解决方案文件为解决方案资源管理器提供显示管理文件的图形接口所需的信息从而在每次继续开发任务时,不会因开发环境而分散精力;*.sln:(Visual Studio... 阅读全文
posted @ 2009-05-06 15:33 andy_0212 阅读(232) 评论(0) 推荐(0)
摘要:I'd like to share findings regarding C# (float) cast.As we convert double to float, we found several slow down issues.We realized C# (... 阅读全文
posted @ 2009-04-14 19:14 andy_0212 阅读(110) 评论(0) 推荐(0)
摘要:http://blog.chinaunix.net/u1/37897/showart_460239.html 装了visual studio 2005,下载了最新版的visual assisit x,费劲周折找到了破解补丁,共享之,需者请取。 文件:VA_X.10.4... 阅读全文
posted @ 2009-04-12 22:45 andy_0212 阅读(208) 评论(0) 推荐(0)
摘要:如果不用ref传递的是原引用变量的副本,即把原来的引用变量复制一分传递给方法;如果用ref传递的是原引用变量的引用. class a { int val; } class test { ... 阅读全文
posted @ 2009-04-08 13:33 andy_0212 阅读(180) 评论(0) 推荐(0)