服务器之家

服务器之家 > 正文

VS2015为console.readkey添加代码片段的方法

时间:2021-12-14 13:41     来源/作者:舍名利

1、打开代码管理器

VS2015为console.readkey添加代码片段的方法

2、打开后就可以看到如下图所示

VS2015为console.readkey添加代码片段的方法

3、复制粘贴该路径,转到该文件夹下

新加一个txt文件,把下面的文本复制粘贴

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="utf-8"?>
<codesnippets xmlns="http://schemas.microsoft.com/visualstudio/2005/codesnippet">
  <codesnippet format="1.0.0">
    <header>
      <title>ck</title>
      <shortcut>ck</shortcut>
      <description>console.readkey 的代码片段</description>
      <author>jinglingzi</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$.readkey();$end$]]>
      </code>
    </snippet>
  </codesnippet>
</codesnippets>

把文件的后缀名改为 .snippet.

 

4、你在写代码的地方,ck 然后两下tab键,console.readkey就出来了。

技巧:

5、<code language="csharp"><![cdata[$systemconsole$.readkey();$end$]]>

这行代码中的,$end$,是光标停止的位置。

 

6、我其实也不会怎么写代码片段,就是把cw的代码片段复制粘贴,大胆修改后成功的。

愿大家的学习一路顺风。

相关文章

热门资讯

yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
2021年耽改剧名单 2021要播出的59部耽改剧列表
2021年耽改剧名单 2021要播出的59部耽改剧列表 2021-03-05
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总 2020-11-13
返回顶部