上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 63 下一页
摘要: [http://www.jelovic.com/articles/resources_in_visual_studio.htm]Using Resources in Visual Studio .NETby Dejan JelovicConceptsHere's how things break down:In Visual Studio .NET, many resources are no l... 阅读全文
posted @ 2010-03-18 14:06 能巴 阅读(381) 评论(0) 推荐(0) 编辑
摘要: [http://www.techmalaya.com/2008/06/11/windows-file-copy-faster-speed/]Looking for a faster way to copy or move your files between folders and partitions in Windows? If you think that the default Windo... 阅读全文
posted @ 2010-03-18 14:02 能巴 阅读(405) 评论(0) 推荐(0) 编辑
摘要: In C#, you have four types of method parameters: value, ref, out, and params.1. The default parameter type is value.2.If you want calling code to see changes to a value type variable, the parameter ty... 阅读全文
posted @ 2010-03-16 14:56 能巴 阅读(371) 评论(0) 推荐(0) 编辑
摘要: In my project, I need to open the whole solution containing C++, C++/CLI and C# projects together. I want the C# intellisense while not wanting C++'s.By asking google, find out the below solution:1. R... 阅读全文
posted @ 2010-03-12 15:45 能巴 阅读(411) 评论(0) 推荐(0) 编辑
摘要: [From Code Project: http://www.codeproject.com/KB/debug/moomoo.aspx]IntroductionOur software just published version 1.0 . My clients often encountered exceptions and blue screens that caused the program to terminate. Most of time, we can not reproduce the bug in our systems. So catching and analyzin 阅读全文
posted @ 2010-03-12 10:17 能巴 阅读(857) 评论(0) 推荐(0) 编辑
摘要: 1. Why need it?Mainly it works as the bridge between managed code and native c++ code, as it's the only graceful way to be able to talk to both sides.Using /cli compiler option, it can generate mixed ... 阅读全文
posted @ 2010-03-10 13:47 能巴 阅读(244) 评论(0) 推荐(0) 编辑
摘要: The syntax for stack versus heap allocation of C++, C++/CLI and CSharpNative C++ lets you choose where to create a given object.Any type can be allocated on the stack or the CRT heap.// allocated on t... 阅读全文
posted @ 2010-03-10 13:41 能巴 阅读(407) 评论(0) 推荐(0) 编辑
摘要: Kenny Kerr一篇名为C++: The Most Powerful Language for .NET Framework Programming文章中的对比表:描述C++/CLIC#创建引用类型的对象ReferenceType^ h = gcnew ReferenceType;ReferenceType h = new ReferenceType();创建值类型的对象ValueType v... 阅读全文
posted @ 2010-03-10 13:04 能巴 阅读(949) 评论(0) 推荐(0) 编辑
摘要: JIT compile when calling a specific method first time; NGen.exe can directly convert whole IL exe application to be 汇编 based.JIT与NGen.exe比较JIT运行时编译,NGen.exe在运行前编译;JIT每次编译需要的方法,NGen.exe一次编译整个程序集;JIT将编译... 阅读全文
posted @ 2010-03-10 12:56 能巴 阅读(358) 评论(0) 推荐(0) 编辑
摘要: All the built-in value types have Parse and TryParse methods when you need conversion from string to those types. 阅读全文
posted @ 2010-03-03 17:24 能巴 阅读(140) 评论(0) 推荐(0) 编辑
上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 63 下一页