标签:
因为代码段的存在。那么如何查看代码段都有啥呢?
1、
2、
3、存储cw的文件中写了啥?
<?xml version="1.0" encoding="utf-8"?> <CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet"> <CodeSnippet Format="1.0.0"> <Header> <Title>cw</Title> <Shortcut>cw</Shortcut> <Description>Console.WriteLine 的代码片段</Description> <Author>Microsoft Corporation</Author> <SnippetTypes> <SnippetType>Expansion</SnippetType> </SnippetTypes> </Header> <Snippet> <Declarations> <Literal Editable="false"> <ID>SystemConsole</ID> <Function>SimpleTypeName(global::System.Console)</Function> </Literal> </Declarations> <Code Language="csharp"><![CDATA[$SystemConsole$.WriteLine($end$);]]> </Code> </Snippet> </CodeSnippet> </CodeSnippets>
这个是有啥语言写的呀?xml!这个语言要不要学习呢?要。
VS2015使用技巧 为什么我们可以输入cw后按两下tab键出现console.writeline
标签:
原文地址:http://www.cnblogs.com/jinlingzi/p/5933642.html