2012-12-08 209 views
2

當使用Visual Studio控制檯應用程序我經常使用下面的代碼行:快捷方式字符串在Visual Studio

Console.WriteLine("press [enter] to exit"); 

是否有建立在Visual Studio中的一個快捷鍵的方式,使我不每次都不需要輸入這個內容?

我可能會經常使用其他代碼行,因爲某種原因,快捷功能會有所幫助。

回答

5

你可以自己定義一個code snippetCreating Our Own Snippets Using Visual Studio 2010是一個很酷的文章。

對於Console.Writeline()方法,請寫cw並按表格兩次。

enter image description here

+0

按一下標籤就夠了 –

+0

如果你只寫'cw',你應該按兩次。如果你寫'cw'並點擊它,一次就足夠了。 –

+0

我會按照你的鏈接。 p.s色彩方案是ace - 是否完全定製?或者它是一個集樣式(不知道VS是否有這些?) – whytheq

1

如果你只是經常需要使用Console.WriteLine(),您可以鍵入Ç瓦特 + 標籤

+0

我特別想要bthis snippet aswell'(「press [enter] exit」)'...我會關注Sonar的鏈接 – whytheq

4

保存在這個(文件名)是.snippet

<?xml version="1.0" encoding="utf-8"?> 
    <CodeSnippets 
     xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet"> 
     <CodeSnippet Format="1.0.0"> 
     <Header> 
      <Title>cwe</Title> 
      <Shortcut>cwe</Shortcut> 
     </Header> 
     <Snippet> 
      <Code Language="CSharp"> 
      <![CDATA[Console.WriteLine("press [enter] to exit");]]> 
      </Code> 
     </Snippet> 
     </CodeSnippet> 
    </CodeSnippets> 

接下來選擇tools-> code snippet manager ...,點擊導入,選擇你的文件並添加。

現在,如果您在編碼時鍵入cwe,請單擊Tab。

+0

+1我喜歡這樣。在導入之前是否將'(filename).snippet'保存在本地驅動器的任何位置 - 或將其保存在特定目錄中? – whytheq

+1

任何地方,我還發現一些編輯http://snippeteditor.codeplex.com/ – dbking

相關問題