随笔分类 - VisualStudio
摘要:http://www.c-sharpcorner.com/news/1750/visual-studio-2012-editions-comparison.aspxhttp://karthikdodda.blogspot.com/2012/12/differences-between-vs2012-...
阅读全文
摘要:http://blogs.msdn.com/b/saraford/archive/2005/08/16/452411.aspxDid you know… That you can hide the solution and advanced build configurationsUnder Too...
阅读全文
摘要:1.Debug配置2.Release配置2.Debug和Release的区别(1)Debug有定义DEBUG常量,Release没有(2)Debug没有优化代码,Release有(3)生成路径不同,分别为bin\Debug\和bin\Release\4.所有配置展示结果是对所有项目配置(Debug,...
阅读全文
摘要:1.默认的解决方案配置默认有2个解决方案配置Debug和Release配置管理器中的活动解决方案配置,其中活动是指,当前解决方案使用的是哪一个解决方案配置右侧的下拉箭头,可以看到还有Release可以选择,选择好之后,回到VS的主菜单界面,会看到启动旁边的解决方案配置会变化3.新建解决方案配置001...
阅读全文
摘要:https://msdn.microsoft.com/en-us/library/bb166577.aspxSolution configurations store solution-level properties.They direct the behavior of theStart(F5)...
阅读全文
摘要://数据帧格式如下 //+-------+-------+-------+-------+---------+------+-------+ //|包头(2)|地址(1)|功能(1)|长度(1)|数据包(n)|CRC(2)|包尾(2)| //+------...
阅读全文
摘要:以开源记牌器https://github.com/Epix37/Hearthstone-Deck-Tracker 为例,Hearthstone Deck Tracker项目中的后期生成事件命令行: if "$(ConfigurationName)" == "Release" ( rmdir /S /
阅读全文
摘要:The numbers correspond to the internal version numbers of various editions of Visual Studiohttp://en.wikipedia.org/wiki/Microsoft_Visual_Studio#Versio...
阅读全文
摘要:发现右键项目的时候,是没有类图的。https://msdn.microsoft.com/en-us/library/hyxd8c85.aspx右键项目--添加--新建项。 选择类图。然后将整个项目拖动到类图中
阅读全文
摘要:1.关闭诊断工具vs2015在程序启动之后,自带了内存和cpu使用情况查看的诊断工具。不喜欢这个,直接点击诊断工具右上角的关闭按钮2.解决方案资源管理器程序启动之后,解决方案资源管理器,被收缩到右侧了强制show出来,然后用钉子钉住3.git使用的时候,需要添加针对.vs的忽略vs2015能够自动针...
阅读全文
摘要:自动排版 ctrl+e 然后再d 注释代码 ctrl+e +c 撤销注释 ctrl+e +u 修改变量名,并同步所有引用变量的代码 F2 2015年09月16日更新 删除一行代码 ctrl+l (是字母L) 2017年06月22日更新 折叠所有的region: ctrl+m 然后o 展开 ctrl+
阅读全文
摘要:https://msdn.microsoft.com/en-us/library/hk90416s(v=vs.110).aspx VS中自带的只能提示,一个类继承自某一个接口。 由VS为类生成接口所要求的方法 using System; using System.Collections.Generi
阅读全文
摘要:在解决方案上右键,选择属性。这样设置之后,点击开始运行之后,会同时启动2个项目。适合一个项目既包含客户端也包含服务端,方便调试
阅读全文
摘要:http://stackoverflow.com/questions/18963750/add-file-as-a-link-on-visual-studio-debug-vs-publishhttp://stackoverflow.com/questions/2593612/visual-stud...
阅读全文
摘要:警告 1由于存在对由程序集“c:\Program Files\Reference Assemblies\Microsoft\VSTO40\v4.0.Framework\Microsoft.Office.Tools.Excel.dll”创建的程序集的间接引用,因此创建了对嵌入的互操作程序集“c:\Pr...
阅读全文
摘要:http://www.cnblogs.com/stg609/p/3723968.html 字体的大小,先配置大小12。在environment中的font size里面调整 VS默认的深色主题和Selenitic搭配比较好看。 http://www.cnblogs.com/JamesLi2015/p
阅读全文
摘要:一 http://stackoverflow.com/questions/2155930/fixing-the-breakpoint-will-not-currently-be-hit-no-symbols-have-been-loaded-fo unable to hit the breakpoi
阅读全文
摘要:https://en.wikipedia.org/wiki/C_Sharp_(programming_language)#Versions http://stackoverflow.com/questions/247621/what-are-the-correct-version-numbers-f
阅读全文
摘要:http://www.cnblogs.com/lzjsky/archive/2010/09/06/1819321.html原来使用Win7的32位系统,进行C#工程的开发,后来重装系统,换成了win7的64位系统调试原来的工程,由于在其中引用了“SQLite”的32位的dll,导致在64为位下程序无...
阅读全文