随笔分类 -  VisualStudio

VC与Cygwin的结合
摘要:1:生成cygwin1.libimpdef cygwin1.def cygwin1.dlllib /DEF:cygwin1.def /OUT:cygwin1.lib2:生成my-crt0.libgcc -shared my-crt0.c -o my-crt0.dllimpdef my-crt0.def my-crt0.dlllib /DEF:my-crt0.def /OUT:my-crt0.lib3: 把crt0.c包含中工程中my_crt0.c#include <sys/cygwin.h>#include <stdlib.h>typedef int (*MainFun 阅读全文

posted @ 2013-03-16 13:24 androidme 阅读(1026) 评论(0) 推荐(0)

How to avoid StepInto unnecessary code area?
摘要:http://www.cppblog.com/clane/archive/2010/03/21/110206.htmlhttp://www.cnblogs.com/taoxu0903/archive/2007/12/28/1018081.htmlVC 单步调试(StepInto)的一个小技巧 相对于Java之类的语言,缺少库一直是C++最为诟病的一个部分。STL、Boost等库的出现,在一定程度上弥补了这些缺憾。但这些库带来便利性的同时,也在调试代码时带来相当的不便。 举个例子,看下面一段代码: structFooObj{charlower(charc){c|=0x20;returnc;}}; 阅读全文

posted @ 2012-11-26 18:14 androidme 阅读(225) 评论(0) 推荐(0)

Search and Navigation Tips/Tricks with Visual Studio
摘要:http://weblogs.asp.net/scottgu/archive/2010/08/24/search-and-navigation-tips-tricks-with-visual-studio.aspxSearch and Navigation Tips/Tricks with Visual StudioThis is the twenty-seventh in a series of blog posts I’m doing on the VS 2010 and .NET 4 release.Today’s blog post continues on from the Debu 阅读全文

posted @ 2012-11-24 15:48 androidme 阅读(258) 评论(0) 推荐(0)

Debugging Tips with Visual Studio 2010
摘要:http://weblogs.asp.net/scottgu/archive/2010/08/18/debugging-tips-with-visual-studio-2010.aspxDebugging Tips with Visual Studio 2010This is the twenty-sixth in a series of blog posts I’m doing on the VS 2010 and .NET 4 release.Today’s blog post covers some useful debugging tips that you can use with 阅读全文

posted @ 2012-11-24 15:48 androidme 阅读(287) 评论(0) 推荐(0)

VS tricks
摘要:http://scottcate.com/category/vstricks/http://weblogs.asp.net/scottgu/archive/2009/08/25/vs-2010-and-net-4-series.aspxhttp://msdn.microsoft.com/en-us/vstudio/gg132842 阅读全文

posted @ 2012-11-24 15:18 androidme 阅读(137) 评论(0) 推荐(0)

Searching and Navigating Code in VS 2010 (VS 2010 and .NET 4.0 Series)
摘要:http://weblogs.asp.net/scottgu/archive/2009/10/21/searching-and-navigating-code-in-vs-2010-vs-2010-and-net-4-0-series.aspxSearching and Navigating Code in VS 2010 (VS 2010 and .NET 4.0 Series)This is the ninth in a series of blog posts I’m doing on the upcoming VS 2010 and .NET 4 release. In today’s 阅读全文

posted @ 2012-11-24 15:15 androidme 阅读(255) 评论(0) 推荐(0)

Visual Studio extensions
摘要:http://visualstudiogallery.msdn.microsoft.com/VS中,通过Tools->Extension Manager进行管理。 阅读全文

posted @ 2012-11-18 21:08 androidme 阅读(167) 评论(0) 推荐(0)

导航