摘要: 最近看到很多同事用 VI 来开发Ruby,Python脚本。 编辑代码全部用的是快捷键,效率很高。其实Visual Stuido也有非常多的快捷键,熟练运用后,能大大提高工作效率。 本文介绍一些最常用的快捷键阅读目录VS快捷键教程删除或剪切一行(Ctrl + X)格式化整个文档(Ctrl + K, Ctrl + D)智能感知(Ctrl + J)折叠所有方法 (Ctrl+M,Ctrl+O)折叠或者展开当前方法(Ctrl+M,Ctrl+M)查看函数参数 (Ctrl+K, Ctrl+P)注释(Ctrl+K, Ctrl+C)在光标下面插入空行(Ctrl+Shift+Enter)插入代码段(Ctrl+K 阅读全文
posted @ 2013-12-16 16:09 迷惘却坚定 阅读(209) 评论(1) 推荐(0) 编辑
摘要: 1 using System; 2 using System.Data; 3 using System.IO; 4 using System.Text; 5 6 /// 7 /// Summary description for FileReadAndWrite 8 /// 9 public class FileReadAndWrite 10 { 11 public FileReadAndWrite() 12 { 13 // 14 // TODO: Add constructor logic here... 阅读全文
posted @ 2013-12-16 12:44 迷惘却坚定 阅读(260) 评论(0) 推荐(0) 编辑