當使用Visual Studio控制檯應用程序我經常使用下面的代碼行:快捷方式字符串在Visual Studio
Console.WriteLine("press [enter] to exit");
是否有建立在Visual Studio中的一個快捷鍵的方式,使我不每次都不需要輸入這個內容?
我可能會經常使用其他代碼行,因爲某種原因,快捷功能會有所幫助。
當使用Visual Studio控制檯應用程序我經常使用下面的代碼行:快捷方式字符串在Visual Studio
Console.WriteLine("press [enter] to exit");
是否有建立在Visual Studio中的一個快捷鍵的方式,使我不每次都不需要輸入這個內容?
我可能會經常使用其他代碼行,因爲某種原因,快捷功能會有所幫助。
你可以自己定義一個code snippet。 Creating Our Own Snippets Using Visual Studio 2010是一個很酷的文章。
對於Console.Writeline()
方法,請寫cw
並按表格兩次。
如果你只是經常需要使用Console.WriteLine()
,您可以鍵入Ç瓦特 + 標籤
我特別想要bthis snippet aswell'(「press [enter] exit」)'...我會關注Sonar的鏈接 – whytheq
保存在這個(文件名)是.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。
按一下標籤就夠了 –
如果你只寫'cw',你應該按兩次。如果你寫'cw'並點擊它,一次就足夠了。 –
我會按照你的鏈接。 p.s色彩方案是ace - 是否完全定製?或者它是一個集樣式(不知道VS是否有這些?) – whytheq